aboutsummaryrefslogtreecommitdiff
path: root/lib/vconn.c
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@nicira.com>2012-08-07 15:18:27 -0700
committerJustin Pettit <jpettit@nicira.com>2012-08-07 15:26:17 -0700
commit6e797088c0ff76843137c3ce0642b319b6404b7c (patch)
tree5b0967762db45b125c3d7c4e397953b96aeb62cf /lib/vconn.c
parent125ee67317fcaa2fd11ab1671c268015105d191d (diff)
vconn: Properly line up description for "tcp:" and "ssl:" usage.
Signed-off-by: Justin Pettit <jpettit@nicira.com>
Diffstat (limited to 'lib/vconn.c')
-rw-r--r--lib/vconn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/vconn.c b/lib/vconn.c
index 8b53b060..9271f4f1 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");