From: Roy Marples Date: Fri, 30 Apr 2010 08:20:01 +0000 (+0000) Subject: Use shorter messages now we show pid so that we don't overflow 80 chars. X-Git-Tag: v5.2.3~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6af065a79d1ef0a2be82d0184870706f4b8adf3e;p=thirdparty%2Fdhcpcd.git Use shorter messages now we show pid so that we don't overflow 80 chars. --- diff --git a/dhcpcd.c b/dhcpcd.c index adb65c4b..051b73cc 100644 --- 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 } };