]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
drop logging code
authorKen Raeburn <raeburn@mit.edu>
Fri, 12 Dec 2003 23:35:27 +0000 (23:35 +0000)
committerKen Raeburn <raeburn@mit.edu>
Fri, 12 Dec 2003 23:35:27 +0000 (23:35 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/branches/raeburn-gssapi-cfx@15889 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/kadm5/clnt/client_rpc.c

index 28905d2c83eecf2bf29f8f8bef827fd1a0c04429..4e3b68a7f4f9fb78de08c7c919cfe6c1316e5b91 100644 (file)
@@ -297,14 +297,10 @@ init_1(argp, clnt)
    CLIENT *clnt;
 {
      static generic_ret res;
-     int x;
 
      memset((char *)&res, 0, sizeof(res));
-     x = clnt_call(clnt, INIT, xdr_u_int32, argp,
-                  xdr_generic_ret, &res, TIMEOUT);
-#define SFILE (strrchr(__FILE__,'/') ? 1+strrchr(__FILE__,'/') : __FILE__)
-     if (x != RPC_SUCCESS) {
-        _log("%s:%d: init_1: clnt_call returned %d\n", SFILE, __LINE__, x);
+     if (clnt_call(clnt, INIT, xdr_u_int32, argp,
+                  xdr_generic_ret, &res, TIMEOUT) != RPC_SUCCESS) {
          return (NULL);
      }
      return (&res);