diff options
| -rw-r--r-- | openvpn/src/openvpn/options.c | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/openvpn/src/openvpn/options.c b/openvpn/src/openvpn/options.c index 26d5aec7..aa06c0a6 100644 --- a/openvpn/src/openvpn/options.c +++ b/openvpn/src/openvpn/options.c @@ -1406,8 +1406,6 @@ show_connection_entry (const struct connection_entry *o)  static void  show_connection_entries (const struct options *o)  { -  msg (D_SHOW_PARMS, "Connection profiles [default]:"); -  show_connection_entry (&o->ce);   if (o->connection_list)     {       const struct connection_list *l = o->connection_list; @@ -1418,6 +1416,11 @@ show_connection_entries (const struct options *o)  	 show_connection_entry (l->array[i]);         }     } + else +   { +     msg (D_SHOW_PARMS, "Connection profiles [default]:"); +     show_connection_entry (&o->ce); +   }    msg (D_SHOW_PARMS, "Connection profiles END");  } | 
