X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=lib%2Fvlog.c;h=b534d196525dfce984c7fb2280056452138f617d;hb=c69ee87c10818267f991236201150b1fa51ae519;hp=b2d0c06904b50b5230a2e6b099188eb9d4c6cfd7;hpb=62ee3464d99c0e37f38b503321cd46181c5c7617;p=cascardo%2Fovs.git diff --git a/lib/vlog.c b/lib/vlog.c index b2d0c0690..b534d1965 100644 --- a/lib/vlog.c +++ b/lib/vlog.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009 Nicira Networks. + * Copyright (c) 2008, 2009, 2010 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -385,7 +385,8 @@ vlog_set_verbosity(const char *arg) } static void -vlog_unixctl_set(struct unixctl_conn *conn, const char *args, void *aux UNUSED) +vlog_unixctl_set(struct unixctl_conn *conn, + const char *args, void *aux OVS_UNUSED) { char *msg = vlog_set_levels_from_string(args); unixctl_command_reply(conn, msg ? 501 : 202, msg); @@ -394,7 +395,7 @@ vlog_unixctl_set(struct unixctl_conn *conn, const char *args, void *aux UNUSED) static void vlog_unixctl_list(struct unixctl_conn *conn, - const char *args UNUSED, void *aux UNUSED) + const char *args OVS_UNUSED, void *aux OVS_UNUSED) { char *msg = vlog_get_levels(); unixctl_command_reply(conn, 200, msg); @@ -403,7 +404,7 @@ vlog_unixctl_list(struct unixctl_conn *conn, static void vlog_unixctl_reopen(struct unixctl_conn *conn, - const char *args UNUSED, void *aux UNUSED) + const char *args OVS_UNUSED, void *aux OVS_UNUSED) { if (log_file_name) { int error = vlog_reopen_log_file();