summaryrefslogtreecommitdiffstats
path: root/src/clients
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1990-11-08 17:39:57 +0000
committerJohn Kohl <jtkohl@mit.edu>1990-11-08 17:39:57 +0000
commit7b662ed5c6b1e8d1409b716da944733b7e1b72ea (patch)
tree573c5242d4d69aebed67b38ae50a861f0de43234 /src/clients
parentf893835c7cec5ae3a835c6119c171f80fe0859e2 (diff)
downloadkrb5-7b662ed5c6b1e8d1409b716da944733b7e1b72ea.tar.gz
krb5-7b662ed5c6b1e8d1409b716da944733b7e1b72ea.tar.xz
krb5-7b662ed5c6b1e8d1409b716da944733b7e1b72ea.zip
use memset instead of bzero
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1446 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/clients')
-rw-r--r--src/clients/kinit/kinit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clients/kinit/kinit.c b/src/clients/kinit/kinit.c
index 637bdfa71..f4785a861 100644
--- a/src/clients/kinit/kinit.c
+++ b/src/clients/kinit/kinit.c
@@ -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;