summaryrefslogtreecommitdiffstats
path: root/cmd-send-prefix.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-10-19 23:33:20 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-10-19 23:33:20 +0000
commit8d09be0cb1e4efad485cce299579d04a0db9d222 (patch)
treeb9de58e97d566752f6159eca311ae3b9ccb5540d /cmd-send-prefix.c
parent5c2d7b2a9a77a49fc1cddea453a7e189b4851845 (diff)
Oops, 0 in wrong place.
Diffstat (limited to 'cmd-send-prefix.c')
-rw-r--r--cmd-send-prefix.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd-send-prefix.c b/cmd-send-prefix.c
index 7f08dfe9..304afbcc 100644
--- a/cmd-send-prefix.c
+++ b/cmd-send-prefix.c
@@ -1,4 +1,4 @@
-/* $Id: cmd-send-prefix.c,v 1.1 2007-10-12 13:03:58 nicm Exp $ */
+/* $Id: cmd-send-prefix.c,v 1.2 2007-10-19 23:33:20 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -30,8 +30,8 @@
void cmd_send_prefix_exec(void *, struct cmd_ctx *);
const struct cmd_entry cmd_send_prefix_entry = {
- "send-prefix", NULL, 0,
- NULL,
+ "send-prefix", NULL, NULL,
+ 0,
NULL,
cmd_send_prefix_exec,
NULL,