]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Remove old debugging stuff
authorAndrew Boardman <amb@mit.edu>
Wed, 16 Aug 2006 21:47:25 +0000 (21:47 +0000)
committerAndrew Boardman <amb@mit.edu>
Wed, 16 Aug 2006 21:47:25 +0000 (21:47 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/users/amb/referrals@18463 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/krb/parse.c

index a4638d638eae4fea15da7b77c5e099b31d05443b..380f53e2d6a2c9ca3c60c10d12a2525d41fff843 100644 (file)
@@ -80,7 +80,6 @@ krb5_parse_name(krb5_context context, const char *name, krb5_principal *nprincip
        krb5_principal  principal;
        krb5_error_code retval;
        
-       printf("krb5_parse_name called on %s\n",name);
        /*
         * Pass 1.  Find out how many components there are to the name,
         * and get string sizes for the first FCOMPNUM components.
@@ -280,10 +279,8 @@ krb5_parse_name(krb5_context context, const char *name, krb5_principal *nprincip
        principal->magic = KV5M_PRINCIPAL;
        principal->realm.magic = KV5M_DATA;
        *nprincipal = principal;
-       amb_dump_principal("krb5_parse_name",principal);
 
        krb5_xfree(default_realm);
-       printf("end of krb5_parse_name()\n");
        return(0);
 }