@@ -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 @@ -72,13 +72,13 @@ memcpy(node, _node, sizeof(_node)); } - (OFString *)description { - OFData *node = [OFData dataWithItems: _node count: sizeof(_node)]; - return [OFString stringWithFormat: - @"A connection to %@ port %" @PRIu16 @" on network %" @PRIX32 - " could not be established in socket of type %@: %@", - node, _port, _network, [_socket class], OFStrError(_errNo)]; + @"A connection to %02X:%02X:%02X:%02X:%02X:%02X port %" @PRIu16 + @" on network %" @PRIX32 " could not be established in socket of " + @"type %@: %@", + _node[0], _node[1], _node[2], _node[3], _node[4], _node[5], _port, + _network, [_socket class], OFStrError(_errNo)]; } @end