diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1998-09-17 03:29:28 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1998-09-17 03:29:28 +0000 |
commit | 4b7a7cd6d87fe4f0da7daa4d8ebc89caf7ed3710 (patch) | |
tree | d886cf2ee6065a1b5e84dfdae0532c4bb7f86d76 /packet-bootp.c | |
parent | 5110b21fd8cba19554f0c4f7a52e96af3acf4927 (diff) | |
download | wireshark-4b7a7cd6d87fe4f0da7daa4d8ebc89caf7ed3710.tar.gz wireshark-4b7a7cd6d87fe4f0da7daa4d8ebc89caf7ed3710.tar.bz2 wireshark-4b7a7cd6d87fe4f0da7daa4d8ebc89caf7ed3710.zip |
Re-added fixes after cvs tree was changed.
svn path=/trunk/; revision=11
Diffstat (limited to 'packet-bootp.c')
-rw-r--r-- | packet-bootp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-bootp.c b/packet-bootp.c index 6ffb8dff12..c1bdb642ce 100644 --- a/packet-bootp.c +++ b/packet-bootp.c @@ -2,7 +2,7 @@ * Routines for BOOTP/DHCP packet disassembly * Gilbert Ramirez <gram@verdict.uthscsa.edu> * - * $Id: packet-bootp.c,v 1.2 1998/09/16 03:22:01 gerald Exp $ + * $Id: packet-bootp.c,v 1.3 1998/09/17 03:29:26 gram Exp $ * * The information used comes from: * RFC 2132: DHCP Options and BOOTP Vendor Extensions @@ -307,8 +307,8 @@ bootp_option(const u_char *pd, GtkWidget *bp_tree, int voff, int eoff) case opaque: add_item_to_tree(bp_tree, voff, consumed, - "Option %d: %s = %s (%d bytes)", - code, text, &pd[voff+2], vlen); + "Option %d: %s (%d bytes)", + code, text, vlen); break; case val_u_short: |