From: Justin Pettit Date: Tue, 7 Aug 2012 22:18:27 +0000 (-0700) Subject: vconn: Properly line up description for "tcp:" and "ssl:" usage. X-Git-Tag: sliver-openvswitch-1.8.90-0~48^2~92 X-Git-Url: http://git.onelab.eu/?p=sliver-openvswitch.git;a=commitdiff_plain;h=6e797088c0ff76843137c3ce0642b319b6404b7c vconn: Properly line up description for "tcp:" and "ssl:" usage. Signed-off-by: Justin Pettit --- diff --git a/lib/vconn.c b/lib/vconn.c index 8b53b060b..9271f4f15 100644 --- a/lib/vconn.c +++ b/lib/vconn.c @@ -138,10 +138,10 @@ vconn_usage(bool active, bool passive, bool bootstrap OVS_UNUSED) printf("\n"); if (active) { printf("Active OpenFlow connection methods:\n"); - printf(" tcp:IP[:PORT] " + printf(" tcp:IP[:PORT] " "PORT (default: %d) at remote IP\n", OFP_TCP_PORT); #ifdef HAVE_OPENSSL - printf(" ssl:IP[:PORT] " + printf(" ssl:IP[:PORT] " "SSL PORT (default: %d) at remote IP\n", OFP_SSL_PORT); #endif printf(" unix:FILE Unix domain socket named FILE\n");