@@ -1,7 +1,7 @@ /* - * Copyright (c) 2008-2022 Jonathan Schleifer + * Copyright (c) 2008-2024 Jonathan Schleifer * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE.QPL included in @@ -78,14 +78,13 @@ memcpy(node, _node, sizeof(_node)); } - (OFString *)description { - OFData *node = [OFData dataWithItems: _node count: sizeof(_node)]; - return [OFString stringWithFormat: - @"Binding to network %" @PRIx16 " on node %@ with port %" @PRIx16 - @" failed for packet type %" @PRIx8 " in socket of type %@: %@", - _network, node, _port, _packetType, [_socket class], - OFStrError(_errNo)]; + @"Binding to network %" @PRIx16 " on node " + @"%02X:%02X:%02X:%02X:%02X:%02X with port %" @PRIx16 @" failed for " + @"packet type %" @PRIx8 " in socket of type %@: %@", + _network, _node[0], _node[1], _node[2], _node[3], _node[4], + _node[5], _port, _packetType, [_socket class], OFStrError(_errNo)]; } @end