krb5 commit [krb5-1.12]: Fix typo in GSS_S_UNAUTHORIZED error message

Tom Yu tlyu at mit.edu
Thu Dec 10 18:14:42 EST 2015


https://github.com/krb5/krb5/commit/2ecf6c52f353715858678f62adc1e476c4712dad
commit 2ecf6c52f353715858678f62adc1e476c4712dad
Author: Tomas Kuthan <tkuthan at gmail.com>
Date:   Wed Sep 30 15:14:40 2015 +0200

    Fix typo in GSS_S_UNAUTHORIZED error message
    
    Remove an erroneous double space in the gss_display_status() result
    for GSS_S_UNAUTHORIZED.
    
    [ghudson at mit.edu: edit commit message]
    
    (cherry picked from commit 36732bf2084803eef52ad56576e5a50f37ccd115)
    
    ticket: 8323 (new)
    version_fixed: 1.12.5
    status: resolved

 src/lib/gssapi/mechglue/g_dsp_status.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/lib/gssapi/mechglue/g_dsp_status.c b/src/lib/gssapi/mechglue/g_dsp_status.c
index 0df34be..70e8492 100644
--- a/src/lib/gssapi/mechglue/g_dsp_status.c
+++ b/src/lib/gssapi/mechglue/g_dsp_status.c
@@ -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:


More information about the cvs-krb5 mailing list