From: Andrew Boardman Date: Wed, 16 Aug 2006 21:47:25 +0000 (+0000) Subject: Remove old debugging stuff X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4893bc4867c3833bb2af964a1c9b2ba9055c28db;p=thirdparty%2Fkrb5.git Remove old debugging stuff git-svn-id: svn://anonsvn.mit.edu/krb5/users/amb/referrals@18463 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/krb/parse.c b/src/lib/krb5/krb/parse.c index a4638d638e..380f53e2d6 100644 --- a/src/lib/krb5/krb/parse.c +++ b/src/lib/krb5/krb/parse.c @@ -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); }