From 5a50f2ad3210b1fa3b74119d738d5dd44cce4d7a Mon Sep 17 00:00:00 2001 From: Martin Zeithaml <66114686+Martin-Zeithaml@users.noreply.github.com> Date: Thu, 23 Apr 2026 17:36:11 +0200 Subject: [PATCH] Fix typo in help message for direction option Signed-off-by: Martin Zeithaml <66114686+Martin-Zeithaml@users.noreply.github.com> --- c/attlsTest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/attlsTest.c b/c/attlsTest.c index aee3ab44..44780c49 100644 --- a/c/attlsTest.c +++ b/c/attlsTest.c @@ -67,7 +67,7 @@ typedef struct { static void printHelpAndExit() { printf("attls-test - detects if AT-TLS is enabled in a live port.\n"); printf(" Format: [_BPX_JOBNAME=jobname] attls-test --serverPort tcp_port --serverHost hostname_or_ipv4" - "--direction {1-Inbound | 2-outBound}\n"); + " --direction {1-Inbound | 2-Outbound}\n"); printf(" Exit values: 0 AT-TLS has been enabled, 4 disabled and 8 other errors\n"); }