Commit 83de7375 authored by Benjamin Drung's avatar Benjamin Drung Committed by Jean-Baptiste Kempf

GnuTLS: fix typo

(cherry picked from commit db67b0a660b57141f53f6aec1bc9f427e0f129e4)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 88a86b39
...@@ -96,7 +96,7 @@ static int gnutls_Init (vlc_object_t *obj) ...@@ -96,7 +96,7 @@ static int gnutls_Init (vlc_object_t *obj)
msg_Err (obj, "unsupported GnuTLS version"); msg_Err (obj, "unsupported GnuTLS version");
return -1; return -1;
} }
msg_Dbg (obj, "using GnuTLS verson %s", version); msg_Dbg (obj, "using GnuTLS version %s", version);
return 0; return 0;
} }
...@@ -116,7 +116,7 @@ static int gnutls_Init (vlc_object_t *obj) ...@@ -116,7 +116,7 @@ static int gnutls_Init (vlc_object_t *obj)
msg_Err (obj, "unsupported GnuTLS version"); msg_Err (obj, "unsupported GnuTLS version");
return -1; return -1;
} }
msg_Dbg (obj, "using GnuTLS verson %s", version); msg_Dbg (obj, "using GnuTLS version %s", version);
if (gnutls_check_version ("3.3.0") == NULL) if (gnutls_check_version ("3.3.0") == NULL)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment