X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Ftest-jsonrpc.c;h=44edda84a429af541c3988d572eb88e3a4b5c6f9;hb=c7981f8ca285147fa315fde62d06107d54f4acac;hp=95697aa1a183c5e7e5073e214f8f678e7e8c1cf7;hpb=ff8bb7e76b2cdcbcf88cd2fac663ba517e4a659c;p=openvswitch diff --git a/tests/test-jsonrpc.c b/tests/test-jsonrpc.c index 95697aa1..44edda84 100644 --- a/tests/test-jsonrpc.c +++ b/tests/test-jsonrpc.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010 Nicira Networks. + * Copyright (c) 2009, 2010, 2011 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -44,7 +44,6 @@ main(int argc, char *argv[]) { proctitle_init(argc, argv); set_program_name(argv[0]); - vlog_init(); parse_options(argc, argv); run_command(argc - optind, argv + optind, all_commands); return 0; @@ -54,7 +53,8 @@ static void parse_options(int argc, char *argv[]) { enum { - OPT_BOOTSTRAP_CA_CERT = UCHAR_MAX + 1 + OPT_BOOTSTRAP_CA_CERT = UCHAR_MAX + 1, + DAEMON_OPTION_ENUMS }; static struct option long_options[] = { {"verbose", optional_argument, 0, 'v'}, @@ -320,7 +320,7 @@ do_notify(int argc OVS_UNUSED, char *argv[]) error = jsonrpc_send_block(rpc, msg); if (error) { - ovs_fatal(error, "could not send request"); + ovs_fatal(error, "could not send notification"); } jsonrpc_close(rpc); }