aboutsummaryrefslogtreecommitdiffstats
path: root/packet-bootp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-02-13 08:29:19 +0000
committerGuy Harris <guy@alum.mit.edu>2003-02-13 08:29:19 +0000
commiteefaa8a3391644b39cfdf794b2978c0934109ef5 (patch)
treeca5739eba3cbd8be8cf892a9befd0ccb53be8ca1 /packet-bootp.c
parentc2594e742980e568daeae961cf84134c3d8dd598 (diff)
Put in a missing comma in a list of strings, so we don't get two strings
concatenated. svn path=/trunk/; revision=7135
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;