diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-11-18 01:45:05 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-11-18 01:45:05 +0000 |
commit | 781acb504375541118e5f7b3b4640f88df084d4f (patch) | |
tree | eed8232d10c4a7051c89939eb37d20b769b762db /packet-ncp.c | |
parent | e53420230c8ae13036eb33412151c22da36ede3c (diff) | |
download | wireshark-781acb504375541118e5f7b3b4640f88df084d4f.tar.gz wireshark-781acb504375541118e5f7b3b4640f88df084d4f.tar.bz2 wireshark-781acb504375541118e5f7b3b4640f88df084d4f.zip |
Craig Rodrigues' fixes to let it compile on AIX using IBM's compiler
(remove commas following the last member of an enum, make all bit fields
"guint32" - GCC lets you get away with that, but at least some other
compilers don't).
svn path=/trunk/; revision=1052
Diffstat (limited to 'packet-ncp.c')
-rw-r--r-- | packet-ncp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ncp.c b/packet-ncp.c index d45bc70d31..98a9a4fa47 100644 --- a/packet-ncp.c +++ b/packet-ncp.c @@ -2,7 +2,7 @@ * Routines for NetWare Core Protocol * Gilbert Ramirez <gram@verdict.uthscsa.edu> * - * $Id: packet-ncp.c,v 1.22 1999/11/17 21:58:28 guy Exp $ + * $Id: packet-ncp.c,v 1.23 1999/11/18 01:45:02 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@unicom.net> @@ -158,7 +158,7 @@ enum nfamily { NCP_QUEUE_SERVICES, /* print queues */ NCP_FILE_SERVICES, /* file serving */ NCP_BINDERY_SERVICES, /* bindery database */ - NCP_CONNECTION_SERVICES, /* communication */ + NCP_CONNECTION_SERVICES /* communication */ }; /* I had to put this function prototype after the enum nfamily declaration */ |