summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2003-10-02 17:38:12 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2003-10-02 17:38:12 +0000
commitcfdc6b4fe2121ca7a96020927c3b2aa9735e564c (patch)
tree505bed4cd9acbe9ca80d410ba98bb0bbb3f13f27
parent2ce3818a2591e2bd914469f0eb6cd86e276f6adb (diff)
downloadgnutls-cfdc6b4fe2121ca7a96020927c3b2aa9735e564c.tar.gz
*** empty log message ***
-rw-r--r--src/cli-gaa.c2
-rw-r--r--src/cli.gaa2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cli-gaa.c b/src/cli-gaa.c
index 4c11b5df68..225e597a43 100644
--- a/src/cli-gaa.c
+++ b/src/cli-gaa.c
@@ -129,7 +129,7 @@ void gaa_help(void)
printf("GNU TLS test client\nUsage: gnutls-cli [options] hostname\n\n\n");
__gaa_helpsingle('d', "debug", "integer ", "Enable debugging");
__gaa_helpsingle('r', "resume", "", "Connect, establish a session. Connect again and resume this session.");
- __gaa_helpsingle('s', "starttls", "", "Connect, establish a plain session and start TLS when EOF is sent from the keyboard.");
+ __gaa_helpsingle('s', "starttls", "", "Connect, establish a plain session and start TLS when EOF or a SIGALRM is received.");
__gaa_helpsingle(0, "crlf", "", "Send CR LF instead of LF.");
__gaa_helpsingle(0, "x509fmtder", "", "Use DER format for certificates to read from.");
__gaa_helpsingle('f', "fingerprint", "", "Send the openpgp fingerprint, instead of the key.");
diff --git a/src/cli.gaa b/src/cli.gaa
index 86c4323247..da853449bd 100644
--- a/src/cli.gaa
+++ b/src/cli.gaa
@@ -18,7 +18,7 @@ option (d, debug) INT "integer" { $debug = $1 } "Enable debugging"
option (r, resume) { $resume = 1 } "Connect, establish a session. Connect again and resume this session."
#int starttls;
-option (s, starttls) { $starttls = 1 } "Connect, establish a plain session and start TLS when EOF is sent from the keyboard."
+option (s, starttls) { $starttls = 1 } "Connect, establish a plain session and start TLS when EOF or a SIGALRM is received."
#int crlf;
option (crlf) { $crlf = 1 } "Send CR LF instead of LF."