]> git.ipfire.org Git - thirdparty/dhcpcd.git/commitdiff
Use shorter messages now we show pid so that we don't overflow 80 chars.
authorRoy Marples <roy@marples.name>
Fri, 30 Apr 2010 08:20:01 +0000 (08:20 +0000)
committerRoy Marples <roy@marples.name>
Fri, 30 Apr 2010 08:20:01 +0000 (08:20 +0000)
dhcpcd.c

index adb65c4b61d6ff3f15879b0f8bce653f609e9050..051b73cc2f3dd8ab45789ed5f28d713860743549 100644 (file)
--- a/dhcpcd.c
+++ b/dhcpcd.c
@@ -100,14 +100,14 @@ struct dhcp_op {
 };
 
 static const struct dhcp_op dhcp_ops[] = {
-       { DHCP_DISCOVER, "DHCP_DISCOVER" },
-       { DHCP_OFFER,    "DHCP_OFFER" },
-       { DHCP_REQUEST,  "DHCP_REQUEST" },
-       { DHCP_DECLINE,  "DHCP_DECLINE" },
-       { DHCP_ACK,      "DHCP_ACK" },
-       { DHCP_NAK,      "DHCP_NAK" },
-       { DHCP_RELEASE,  "DHCP_RELEASE" },
-       { DHCP_INFORM,   "DHCP_INFORM" },
+       { DHCP_DISCOVER, "DISCOVER" },
+       { DHCP_OFFER,    "OFFER" },
+       { DHCP_REQUEST,  "REQUEST" },
+       { DHCP_DECLINE,  "DECLINE" },
+       { DHCP_ACK,      "ACK" },
+       { DHCP_NAK,      "NAK" },
+       { DHCP_RELEASE,  "RELEASE" },
+       { DHCP_INFORM,   "INFORM" },
        { 0, NULL }
 };