projects
/
krb5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f893835
)
use memset instead of bzero
author
John Kohl
<jtkohl@mit.edu>
Thu, 8 Nov 1990 17:39:57 +0000
(17:39 +0000)
committer
John 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
patch
|
blob
|
history
diff --git
a/src/clients/kinit/kinit.c
b/src/clients/kinit/kinit.c
index 637bdfa7133190edc4dc75486981d6ddbd8ea8ad..f4785a861925160b606ae9bedcc740313761b2a1 100644
(file)
--- 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;