X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Ftest-netflow.c;h=921f0fd7708a074e538cf08fbf4dac2af1093798;hb=994145e0f7c66d4cdada1d15a5fd4699931069fc;hp=c37eeafe68e5a1fd3509124071cc3f911b4b4457;hpb=52440c192b8dcb5d4519838e9a249ba3ae672cf6;p=sliver-openvswitch.git diff --git a/tests/test-netflow.c b/tests/test-netflow.c index c37eeafe6..921f0fd77 100644 --- a/tests/test-netflow.c +++ b/tests/test-netflow.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2012 Nicira, Inc. + * Copyright (c) 2011, 2012, 2013 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -75,7 +75,7 @@ print_netflow(struct ofpbuf *buf) } printf("seq %"PRIu32": "IP_FMT" > "IP_FMT, ntohl(hdr->flow_seq), - IP_ARGS(&rec->src_addr), IP_ARGS(&rec->dst_addr)); + IP_ARGS(rec->src_addr), IP_ARGS(rec->dst_addr)); printf(", if %"PRIu16" > %"PRIu16, ntohs(rec->input), ntohs(rec->output)); @@ -137,7 +137,7 @@ print_netflow(struct ofpbuf *buf) ntohl(rec->init_time), ntohl(rec->used_time)); if (rec->nexthop != htonl(0)) { - printf(", nexthop "IP_FMT, IP_ARGS(&rec->nexthop)); + printf(", nexthop "IP_FMT, IP_ARGS(rec->nexthop)); } if (rec->src_as != htons(0) || rec->dst_as != htons(0)) { printf(", AS %"PRIu16" > %"PRIu16, @@ -234,12 +234,13 @@ static void parse_options(int argc, char *argv[]) { enum { - DAEMON_OPTION_ENUMS + DAEMON_OPTION_ENUMS, + VLOG_OPTION_ENUMS }; - static struct option long_options[] = { - {"verbose", optional_argument, NULL, 'v'}, + static const struct option long_options[] = { {"help", no_argument, NULL, 'h'}, DAEMON_LONG_OPTIONS, + VLOG_LONG_OPTIONS, {NULL, 0, NULL, 0}, }; char *short_options = long_options_to_short_options(long_options); @@ -254,11 +255,8 @@ parse_options(int argc, char *argv[]) case 'h': usage(); - case 'v': - vlog_set_verbosity(optarg); - break; - DAEMON_OPTION_HANDLERS + VLOG_OPTION_HANDLERS case '?': exit(EXIT_FAILURE);