aboutsummaryrefslogtreecommitdiffstats
path: root/tap-iousers.c
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2006-02-11 13:05:24 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2006-02-11 13:05:24 +0000
commitfcf7b3789cec5595880d27e0109387e2d8733b38 (patch)
tree04149b75555afc2d39791e321970f76b1bcaca38 /tap-iousers.c
parentca970e37571a3a39d6fc257c899ffacc25222269 (diff)
add an userdata argument to register_stat_cmd_arg() and its callback to use the callback for multiple registrations.
svn path=/trunk/; revision=17252
Diffstat (limited to 'tap-iousers.c')
-rw-r--r--tap-iousers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tap-iousers.c b/tap-iousers.c
index 2ae1e96359..d7c779b981 100644
--- a/tap-iousers.c
+++ b/tap-iousers.c
@@ -579,7 +579,7 @@ iousers_draw(void *arg)
}
void
-iousers_init(const char *optarg)
+iousers_init(const char *optarg, void* userdata _U_)
{
const char *filter=NULL;
const char *tap_type, *tap_type_name;
@@ -710,5 +710,5 @@ iousers_init(const char *optarg)
void
register_tap_listener_iousers(void)
{
- register_stat_cmd_arg("conv,", iousers_init);
+ register_stat_cmd_arg("conv,", iousers_init, NULL);
}