* krb_auth_su.c: Fix a call to plain_dump_principal() that had the
authorMitchell Berger <mitchb@mit.edu>
Sun, 7 Oct 2001 08:06:27 +0000 (08:06 +0000)
committerMitchell Berger <mitchb@mit.edu>
Sun, 7 Oct 2001 08:06:27 +0000 (08:06 +0000)
wrong number of arguments but was only compiled if GET_TGT_VIA_PASSWD
wasn't defined.

[Fixes krb5-clients/998]

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13790 dc483132-0cff-0310-8789-dd5450dbe970

src/clients/ksu/ChangeLog
src/clients/ksu/krb_auth_su.c

index 03101e410161d08a9a4e113551e11ba34c7b5c0c..6cba8c7701f823184b000061088a0d87c5f10670 100644 (file)
@@ -1,3 +1,9 @@
+2001-10-07  Mitchell Berger  <mitchb@mit.edu>
+
+       * krb_auth_su.c: Fix a call to plain_dump_principal() that had the
+       wrong number of arguments but was only compiled if GET_TGT_VIA_PASSWD
+       wasn't defined.
+
 2001-09-16  Mitchell Berger  <mitchb@mit.edu>
 
        * ksu.M: Correct a few typos.
index 233cb1179767a2721319d66e1bd4dbfb4cbdde6e..1771e4b6f1c9286e0b908492c532a104ee7e9d4f 100644 (file)
@@ -165,7 +165,7 @@ krb5_boolean krb5_auth_check(context, client_pname, hostname, options,
        }
        
 #else
-       plain_dump_principal (client);
+       plain_dump_principal (context, client);
        fprintf(stderr,"does not have any appropriate tickets in the cache.\n");
        return FALSE;