diff options
author | Denis Vlasenko | 2006-09-29 21:30:43 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-09-29 21:30:43 +0000 |
commit | a959588b80529ef5e02048ed71f3c7bf9a117217 (patch) | |
tree | 331b3963cb98fded02b753ca33bfa37cb48a97c6 /networking/udhcp/clientpacket.c | |
parent | 6c30db8bd37da1466dc71bf3c8c20851d8f46c43 (diff) | |
download | busybox-a959588b80529ef5e02048ed71f3c7bf9a117217.zip busybox-a959588b80529ef5e02048ed71f3c7bf9a117217.tar.gz |
Yet another silly little byte saving. couldn't -> cannot
Diffstat (limited to 'networking/udhcp/clientpacket.c')
-rw-r--r-- | networking/udhcp/clientpacket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/clientpacket.c b/networking/udhcp/clientpacket.c index f7e7d44..f9f5a3b 100644 --- a/networking/udhcp/clientpacket.c +++ b/networking/udhcp/clientpacket.c @@ -172,7 +172,7 @@ int get_raw_packet(struct dhcpMessage *payload, int fd) memset(&packet, 0, sizeof(struct udp_dhcp_packet)); bytes = read(fd, &packet, sizeof(struct udp_dhcp_packet)); if (bytes < 0) { - DEBUG("Couldn't read on raw listening socket - ignoring"); + DEBUG("Cannot read on raw listening socket - ignoring"); usleep(500000); /* possible down interface, looping condition */ return -1; } |