X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;ds=sidebyside;f=ovsdb%2Fovsdb-tool.c;h=2ae782ebad720b103f5e21d8272a3cf68050a140;hb=c5cf10598f8c9f4428291e9df3ecd72a05fb1ccf;hp=077e7f5cbd440ebf58345564281b03a0122d2fac;hpb=1ff1065c32df20a751c3d33cf2f67b798c5cf119;p=sliver-openvswitch.git diff --git a/ovsdb/ovsdb-tool.c b/ovsdb/ovsdb-tool.c index 077e7f5cb..2ae782eba 100644 --- a/ovsdb/ovsdb-tool.c +++ b/ovsdb/ovsdb-tool.c @@ -27,6 +27,7 @@ #include "compiler.h" #include "dirs.h" #include "dynamic-string.h" +#include "fatal-signal.h" #include "file.h" #include "lockfile.h" #include "log.h" @@ -40,8 +41,6 @@ #include "util.h" #include "vlog.h" -VLOG_DEFINE_THIS_MODULE(ovsdb_tool); - /* -m, --more: Verbosity level for "show-log" command output. */ static int show_log_verbosity; @@ -58,7 +57,7 @@ main(int argc, char *argv[]) { set_program_name(argv[0]); parse_options(argc, argv); - signal(SIGPIPE, SIG_IGN); + fatal_ignore_sigpipe(); run_command(argc - optind, argv + optind, get_all_commands()); return 0; } @@ -526,7 +525,7 @@ do_show_log(int argc, char *argv[]) t *= 1000; } - s = xastrftime_msec(" %Y-%m-%d %H:%M:%S.###", t, true); + s = xastrftime_msec(" %Y-%m-%d %H:%M:%S.###", t, true); fputs(s, stdout); free(s); }