From 0a279ccbfcb0be44e4e82f9ced28641a8d5cc3ef Mon Sep 17 00:00:00 2001 From: Michael Rash Date: Sat, 18 May 2013 22:49:38 -0400 Subject: [PATCH] [client] minor --verbose display update to say source port is 'OS assigned' when not otherwise set --- client/spa_comm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/spa_comm.c b/client/spa_comm.c index 2532669b..22384c19 100644 --- a/client/spa_comm.c +++ b/client/spa_comm.c @@ -45,7 +45,7 @@ dump_transmit_options(const fko_cli_options_t *options) if (options->spa_src_port) log_msg(LOG_VERBOSITY_INFO, " source port: %d", options->spa_src_port); else - log_msg(LOG_VERBOSITY_INFO, " source port: unknown"); + log_msg(LOG_VERBOSITY_INFO, " source port: "); log_msg(LOG_VERBOSITY_INFO, " destination port: %d", options->spa_dst_port); log_msg(LOG_VERBOSITY_INFO, " IP/host: %s", options->spa_server_str);