X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fvlog.c;h=b2d0c06904b50b5230a2e6b099188eb9d4c6cfd7;hb=8ecd53084ce42e2e868a9c24c57b2d9a7e59cfc2;hp=5496f010e6bfeea5e1d7152d4e0f4381c2845343;hpb=be2c418b73fcb6c606725d84c18b0ad618082c75;p=sliver-openvswitch.git diff --git a/lib/vlog.c b/lib/vlog.c index 5496f010e..b2d0c0690 100644 --- a/lib/vlog.c +++ b/lib/vlog.c @@ -385,7 +385,7 @@ vlog_set_verbosity(const char *arg) } static void -vlog_unixctl_set(struct unixctl_conn *conn, const char *args) +vlog_unixctl_set(struct unixctl_conn *conn, const char *args, void *aux UNUSED) { char *msg = vlog_set_levels_from_string(args); unixctl_command_reply(conn, msg ? 501 : 202, msg); @@ -393,7 +393,8 @@ vlog_unixctl_set(struct unixctl_conn *conn, const char *args) } static void -vlog_unixctl_list(struct unixctl_conn *conn, const char *args UNUSED) +vlog_unixctl_list(struct unixctl_conn *conn, + const char *args UNUSED, void *aux UNUSED) { char *msg = vlog_get_levels(); unixctl_command_reply(conn, 200, msg); @@ -401,7 +402,8 @@ vlog_unixctl_list(struct unixctl_conn *conn, const char *args UNUSED) } static void -vlog_unixctl_reopen(struct unixctl_conn *conn, const char *args UNUSED) +vlog_unixctl_reopen(struct unixctl_conn *conn, + const char *args UNUSED, void *aux UNUSED) { if (log_file_name) { int error = vlog_reopen_log_file(); @@ -435,9 +437,9 @@ vlog_init(void) VLOG_ERR("current time is negative: %s (%ld)", s, (long int) now); } - unixctl_command_register("vlog/set", vlog_unixctl_set); - unixctl_command_register("vlog/list", vlog_unixctl_list); - unixctl_command_register("vlog/reopen", vlog_unixctl_reopen); + unixctl_command_register("vlog/set", vlog_unixctl_set, NULL); + unixctl_command_register("vlog/list", vlog_unixctl_list, NULL); + unixctl_command_register("vlog/reopen", vlog_unixctl_reopen, NULL); } /* Closes the logging subsystem. */