vlc | branch: master | Filip Roséen <[email protected]> | Fri Mar 17 03:35:58 2017 +0100| [2515e490dcbf72883c1bb3e83d7a19cce4a9fce8] | committer: Jean-Baptiste Kempf
misc/gnutls: gnutls_ClientHandshake fix typo in dialog contents Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2515e490dcbf72883c1bb3e83d7a19cce4a9fce8 --- modules/misc/gnutls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/misc/gnutls.c b/modules/misc/gnutls.c index f3e5d44..045fbd1 100644 --- a/modules/misc/gnutls.c +++ b/modules/misc/gnutls.c @@ -471,13 +471,13 @@ static int gnutls_ClientHandshake(vlc_tls_creds_t *creds, vlc_tls_t *tls, return 0; case GNUTLS_E_NO_CERTIFICATE_FOUND: msg_Dbg(creds, "no known certificates for %s", host); - msg = N_("However the security certificate presented by the " + msg = N_("However, the security certificate presented by the " "server is unknown and could not be authenticated by any " "trusted Certificate Authority."); break; case GNUTLS_E_CERTIFICATE_KEY_MISMATCH: msg_Dbg(creds, "certificate keys mismatch for %s", host); - msg = N_("However the security certificate presented by the " + msg = N_("However, the security certificate presented by the " "server changed since the previous visit and was not " "authenticated by any trusted Certificate Authority. "); break; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
