]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Fix typo in GSS_S_UNAUTHORIZED error message
authorTomas Kuthan <tkuthan@gmail.com>
Wed, 30 Sep 2015 13:14:40 +0000 (15:14 +0200)
committerGreg Hudson <ghudson@mit.edu>
Wed, 30 Sep 2015 17:08:19 +0000 (13:08 -0400)
Remove an erroneous double space in the gss_display_status() result
for GSS_S_UNAUTHORIZED.

[ghudson@mit.edu: edit commit message]

ticket: 8256 (new)
target_version: 1.14
tags: pullup

src/lib/gssapi/mechglue/g_dsp_status.c

index 0df34be16fcc7376f19918129544bbc37306439d..70e8492636ad9ab6a4d9b5718b72cf640f8d304e 100644 (file)
@@ -251,7 +251,7 @@ gss_buffer_t outStr;
 
                case GSS_S_UNAUTHORIZED:
                        errStr = _("The operation is forbidden by local "
-                                  " security policy");
+                                  "security policy");
                        break;
 
                case GSS_S_UNAVAILABLE: