Skip to content

Commit b8e6f59

Browse files
show version of wolfSSL linked to
1 parent 3e3d6a8 commit b8e6f59

File tree

7 files changed

+14
-7
lines changed

7 files changed

+14
-7
lines changed

apps/wolfssh/wolfssh.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ static void ShowUsage(char* appPath)
9393
appName = "wolfssh";
9494
}
9595

96-
printf("%s v%s\n", appName, LIBWOLFSSH_VERSION_STRING);
96+
printf("%s v%s linked with wolfSSL %s\n", appName,
97+
LIBWOLFSSH_VERSION_STRING, LIBWOLFSSL_VERSION_STRING);
9798
printf("usage: %s [-E logfile] [-G] [-l login_name] [-N] [-p port] "
9899
"[-V] destination\n",
99100
appName);

apps/wolfsshd/wolfsshd.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,8 @@ static void ServiceDebugCb(enum wolfSSH_LogLevel level, const char* const msgStr
181181

182182
static void ShowUsage(void)
183183
{
184-
printf("wolfsshd %s\n", LIBWOLFSSH_VERSION_STRING);
184+
printf("wolfSSHd %s linked with wolfSSL %s\n", LIBWOLFSSH_VERSION_STRING,
185+
LIBWOLFSSL_VERSION_STRING);
185186
printf(" -? display this help and exit\n");
186187
printf(" -f <file name> Configuration file to use, default is "
187188
"/etc/ssh/sshd_config\n");

examples/client/client.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ static const char testString[] = "Hello, wolfSSH!";
8282

8383
static void ShowUsage(void)
8484
{
85-
printf("client %s\n", LIBWOLFSSH_VERSION_STRING);
85+
printf("client %s linked with wolfSSL %s\n", LIBWOLFSSH_VERSION_STRING,
86+
LIBWOLFSSL_VERSION_STRING);
8687
printf(" -? display this help and exit\n");
8788
printf(" -h <host> host to connect to, default %s\n", wolfSshIp);
8889
printf(" -p <num> port to connect on, default %d\n", wolfSshPort);

examples/echoserver/echoserver.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -2288,7 +2288,8 @@ static int SetDefaultSftpPath(WOLFSSH* ssh, const char* defaultSftpPath)
22882288

22892289
static void ShowUsage(void)
22902290
{
2291-
printf("echoserver %s\n", LIBWOLFSSH_VERSION_STRING);
2291+
printf("echoserver %s linked with wolfSSL %s\n", LIBWOLFSSH_VERSION_STRING,
2292+
LIBWOLFSSL_VERSION_STRING);
22922293
printf(" -? display this help and exit\n");
22932294
printf(" -1 exit after single (one) connection\n");
22942295
printf(" -e expect ECC public key from client\n");

examples/portfwd/portfwd.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ static inline int max(int a, int b)
7979

8080
static void ShowUsage(void)
8181
{
82-
printf("portfwd %s\n"
82+
printf("portfwd %s linked with wolfSSL %s\n"
8383
" -? display this help and exit\n"
8484
" -h <host> host to connect to, default %s\n"
8585
" -p <num> port to connect on, default %u\n"
@@ -90,6 +90,7 @@ static void ShowUsage(void)
9090
" -T <host> host to forward to, default to host\n"
9191
" -t <num> port to forward to (REQUIRED)\n",
9292
LIBWOLFSSH_VERSION_STRING,
93+
LIBWOLFSSL_VERSION_STRING,
9394
wolfSshIp, wolfSshPort, defaultFwdFromHost);
9495
}
9596

examples/scpclient/scpclient.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@
5151
#define USAGE_WIDE "12"
5252
static void ShowUsage(void)
5353
{
54-
printf("wolfscp %s\n", LIBWOLFSSH_VERSION_STRING);
54+
printf("wolfscp %s linked with wolfSSL %s\n", LIBWOLFSSH_VERSION_STRING,
55+
LIBWOLFSSL_VERSION_STRING);
5556
printf(" -%c %-" USAGE_WIDE "s %s\n", 'h', "",
5657
"display this help and exit");
5758
printf(" -%c %-" USAGE_WIDE "s %s, default %s\n", 'H', "<host>",

examples/sftpclient/sftpclient.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,8 @@ static void ShowCommands(void)
328328

329329
static void ShowUsage(void)
330330
{
331-
printf("wolfsftp %s\n", LIBWOLFSSH_VERSION_STRING);
331+
printf("wolfsftp %s linked with wolfSSL %s\n", LIBWOLFSSH_VERSION_STRING,
332+
LIBWOLFSSL_VERSION_STRING);
332333
printf(" -? display this help and exit\n");
333334
printf(" -h <host> host to connect to, default %s\n", wolfSshIp);
334335
printf(" -p <num> port to connect on, default %d\n", wolfSshPort);

0 commit comments

Comments
 (0)