summaryrefslogtreecommitdiff
path: root/src/pt-tls-client
diff options
context:
space:
mode:
Diffstat (limited to 'src/pt-tls-client')
-rw-r--r--src/pt-tls-client/Makefile.in2
-rw-r--r--src/pt-tls-client/pt-tls-client.1.in4
-rw-r--r--src/pt-tls-client/pt-tls-client.c3
3 files changed, 6 insertions, 3 deletions
diff --git a/src/pt-tls-client/Makefile.in b/src/pt-tls-client/Makefile.in
index 820bec9f3..1bab5804f 100644
--- a/src/pt-tls-client/Makefile.in
+++ b/src/pt-tls-client/Makefile.in
@@ -247,9 +247,11 @@ ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
+FUZZING_LDFLAGS = @FUZZING_LDFLAGS@
GEM = @GEM@
GENHTML = @GENHTML@
GPERF = @GPERF@
+GPERF_LEN_TYPE = @GPERF_LEN_TYPE@
GPRBUILD = @GPRBUILD@
GREP = @GREP@
INSTALL = @INSTALL@
diff --git a/src/pt-tls-client/pt-tls-client.1.in b/src/pt-tls-client/pt-tls-client.1.in
index d7c9dffe5..795054c80 100644
--- a/src/pt-tls-client/pt-tls-client.1.in
+++ b/src/pt-tls-client/pt-tls-client.1.in
@@ -20,7 +20,7 @@ pt-tls-client \- Simple client using PT-TLS to collect integrity information
.OP \-\-client client-id
.OP \-\-secret password
.OP \-\-mutual
-.OP \-\-optionsfrom filename
+.OP \-\-options filename
.OP \-\-quiet
.OP \-\-debug level
.YS
@@ -92,7 +92,7 @@ Set debug level, default: 1.
.B "\-q, \-\-quiet
Disable debug output to stderr.
.TP
-.BI "\-+, \-\-optionsfrom " file
+.BI "\-+, \-\-options " file
Read command line options from \fIfile\fR.
.
.SH "EXAMPLES"
diff --git a/src/pt-tls-client/pt-tls-client.c b/src/pt-tls-client/pt-tls-client.c
index d7e78c497..841724eb3 100644
--- a/src/pt-tls-client/pt-tls-client.c
+++ b/src/pt-tls-client/pt-tls-client.c
@@ -45,7 +45,7 @@ static void usage(FILE *out)
" [--cert <file>]+ [--keyid <hex>|--key <file>]\n"
" [--key-type rsa|ecdsa] [--client <client-id>]\n"
" [--secret <password>] [--mutual] [--quiet]\n"
- " [--debug <level>] [--optionsfrom <filename>]\n");
+ " [--debug <level>] [--options <filename>]\n");
}
/**
@@ -289,6 +289,7 @@ int main(int argc, char *argv[])
{"mutual", no_argument, NULL, 'm' },
{"quiet", no_argument, NULL, 'q' },
{"debug", required_argument, NULL, 'd' },
+ {"options", required_argument, NULL, '+' },
{"optionsfrom", required_argument, NULL, '+' },
{0,0,0,0 }
};