aboutsummaryrefslogtreecommitdiffstats
path: root/packet-bootp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-02-13 08:29:19 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-02-13 08:29:19 +0000
commitd6e45d2f69d27d3aa9574ff2e16566b4417f1131 (patch)
treeca5739eba3cbd8be8cf892a9befd0ccb53be8ca1 /packet-bootp.c
parentb34253978c5037cc1b13cd62b5e30cc7f2acd2d1 (diff)
Put in a missing comma in a list of strings, so we don't get two strings
concatenated. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7135 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-bootp.c')
-rw-r--r--packet-bootp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-bootp.c b/packet-bootp.c
index a5d341e58c..7304ddab14 100644
--- a/packet-bootp.c
+++ b/packet-bootp.c
@@ -2,7 +2,7 @@
* Routines for BOOTP/DHCP packet disassembly
* Gilbert Ramirez <gram@alumni.rice.edu>
*
- * $Id: packet-bootp.c,v 1.72 2003/02/07 04:25:37 gerald Exp $
+ * $Id: packet-bootp.c,v 1.73 2003/02/13 08:29:19 guy Exp $
*
* The information used comes from:
* RFC 951: Bootstrap Protocol
@@ -114,7 +114,7 @@ get_dhcp_type(guint8 byte)
"ACK",
"NAK",
"Release",
- "Inform"
+ "Inform",
"Force Renew"
};
int i;