use memset instead of bzero
authorJohn Kohl <jtkohl@mit.edu>
Thu, 8 Nov 1990 17:39:57 +0000 (17:39 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Thu, 8 Nov 1990 17:39:57 +0000 (17:39 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1446 dc483132-0cff-0310-8789-dd5450dbe970

src/clients/kinit/kinit.c

index 637bdfa7133190edc4dc75486981d6ddbd8ea8ad..f4785a861925160b606ae9bedcc740313761b2a1 100644 (file)
@@ -130,7 +130,7 @@ main(argc, argv)
        exit(1);
     }
 
-    bzero(&my_creds, sizeof(my_creds));
+    memset(&my_creds, 0, sizeof(my_creds));
     
     my_creds.client = me;
     my_creds.server = server;