From: Jonathan Bastien-Filiatrault Date: Sat, 25 Sep 2010 01:59:05 +0000 (-0400) Subject: Fix typo. X-Git-Tag: gnutls_2_99_0~262 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f500e3c03137fa1bfdca067ab718cc3df8086a0a;p=thirdparty%2Fgnutls.git Fix typo. Signed-off-by: Nikos Mavrogiannopoulos --- diff --git a/src/cli-gaa.c b/src/cli-gaa.c index dae1c07f8d..fc00320eea 100644 --- a/src/cli-gaa.c +++ b/src/cli-gaa.c @@ -130,7 +130,7 @@ void gaa_help(void) __gaa_helpsingle('d', "debug", "integer ", "Enable debugging"); __gaa_helpsingle('r', "resume", "", "Connect, establish a session. Connect again and resume this session."); __gaa_helpsingle('e', "rehandshake", "", "Connect, establish a session and rehandshake immediately."); - __gaa_helpsingle(0, "noticket", "", "Doen't accept session tickets."); + __gaa_helpsingle(0, "noticket", "", "Doesn't accept session tickets."); __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."); diff --git a/src/cli.gaa b/src/cli.gaa index efd7e32152..73b6d134b9 100644 --- a/src/cli.gaa +++ b/src/cli.gaa @@ -21,7 +21,7 @@ option (r, resume) { $resume = 1 } "Connect, establish a session. Connect again option (e, rehandshake) { $rehandshake = 1 } "Connect, establish a session and rehandshake immediately." #int noticket; -option (noticket) { $noticket = 1 } "Doen't accept session tickets." +option (noticket) { $noticket = 1 } "Doesn't accept session tickets." #int starttls; option (s, starttls) { $starttls = 1 } "Connect, establish a plain session and start TLS when EOF or a SIGALRM is received."