aboutsummaryrefslogtreecommitdiffstats
path: root/packet-portmap.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-01-18 09:55:10 +0000
committerGuy Harris <guy@alum.mit.edu>2001-01-18 09:55:10 +0000
commit8c14ddcd0f42fa7a1f0a3e2c39b83f86394b53b2 (patch)
treeb2c9b34395d68e2dd3384b1b81ef205dbb9c3352 /packet-portmap.c
parentf3470d634106430a128b541944d0dbd288e7e768 (diff)
Fix comments to reflect what a null function pointer in a "vsff" table
really means. Make the "XXX_proc" arrays static. svn path=/trunk/; revision=2920
Diffstat (limited to 'packet-portmap.c')
-rw-r--r--packet-portmap.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/packet-portmap.c b/packet-portmap.c
index 800621f2ac..d611bbf797 100644
--- a/packet-portmap.c
+++ b/packet-portmap.c
@@ -1,7 +1,7 @@
/* packet-portmap.c
* Routines for portmap dissection
*
- * $Id: packet-portmap.c,v 1.21 2001/01/03 06:55:31 guy Exp $
+ * $Id: packet-portmap.c,v 1.22 2001/01/18 09:55:10 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -221,8 +221,8 @@ int dissect_dump_reply(const u_char *pd, int offset, frame_data *fd,
}
/* proc number, "proc name", dissect_request, dissect_reply */
-/* NULL as function pointer means: take the generic one. */
-const vsff portmap1_proc[] = {
+/* NULL as function pointer means: type of arguments is "void". */
+static const vsff portmap1_proc[] = {
{ PORTMAPPROC_NULL, "NULL", NULL, NULL },
{ PORTMAPPROC_SET, "SET", NULL, NULL },
{ PORTMAPPROC_UNSET, "UNSET", NULL, NULL },
@@ -233,7 +233,7 @@ const vsff portmap1_proc[] = {
};
/* end of Portmap version 1 */
-const vsff portmap2_proc[] = {
+static const vsff portmap2_proc[] = {
{ PORTMAPPROC_NULL, "NULL",
NULL, NULL },
{ PORTMAPPROC_SET, "SET",
@@ -327,7 +327,7 @@ int dissect_rpcb3_dump_reply(const u_char *pd, int offset, frame_data *fd,
/* Portmapper version 3, RFC 1833, Page 7 */
-const vsff portmap3_proc[] = {
+static const vsff portmap3_proc[] = {
{ RPCBPROC_NULL, "NULL",
NULL, NULL },
{ RPCBPROC_SET, "SET",
@@ -352,7 +352,7 @@ const vsff portmap3_proc[] = {
/* Portmapper version 4, RFC 1833, Page 8 */
-const vsff portmap4_proc[] = {
+static const vsff portmap4_proc[] = {
{ RPCBPROC_NULL, "NULL",
NULL, NULL },
{ RPCBPROC_SET, "SET",