summaryrefslogtreecommitdiff
path: root/src/cli.c
diff options
context:
space:
mode:
authorMartin Storsjo <martin@martin.st>2012-11-01 22:49:00 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2012-11-01 22:50:31 +0100
commit2e902a26e55f407c89481fc8ca3fee07ae09f90c (patch)
tree63b58827be05bb578f7f0186c14316ea15025afd /src/cli.c
parent6d839746ef4964daac20723e8e7e5505eb51dcf9 (diff)
downloadgnutls-2e902a26e55f407c89481fc8ca3fee07ae09f90c.tar.gz
Fix typos in error messages
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
Diffstat (limited to 'src/cli.c')
-rw-r--r--src/cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli.c b/src/cli.c
index 513dda7d81..954cde1da4 100644
--- a/src/cli.c
+++ b/src/cli.c
@@ -678,7 +678,7 @@ init_tls_session (const char *hostname)
ret = gnutls_srtp_set_profile_direct (session, OPT_ARG(SRTP_PROFILES), &err);
if (ret == GNUTLS_E_INVALID_REQUEST) fprintf (stderr, "Syntax error at: %s\n", err);
else
- fprintf(stderr, "Error in priorities: %s\n", gnutls_strerror(ret));
+ fprintf(stderr, "Error in profiles: %s\n", gnutls_strerror(ret));
exit (1);
}