Skip to content

Commit

Permalink
* kadmin.c (kadmin_cpw): Initialize ks_tuple to NULL.
Browse files Browse the repository at this point in the history
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12094 dc483132-0cff-0310-8789-dd5450dbe970
  • Loading branch information
tlyu committed Mar 1, 2000
1 parent 4703218 commit bdf0e44
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/kadmin/cli/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2000-03-01 Tom Yu <tlyu@mit.edu>

* kadmin.c (kadmin_cpw): Initialize ks_tuple to NULL.

2000-02-27 Tom Yu <tlyu@mit.edu>

* kadmin.c (kadmin_parse_princ_args): Remove keepold argument to
Expand Down
2 changes: 1 addition & 1 deletion src/kadmin/cli/kadmin.c
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ void kadmin_cpw(argc, argv)
char *canon;
char *pwarg = NULL;
int n_ks_tuple = 0, keepold = 0, randkey = 0;
krb5_key_salt_tuple *ks_tuple;
krb5_key_salt_tuple *ks_tuple = NULL;
krb5_principal princ;

if (argc < 2) {
Expand Down

0 comments on commit bdf0e44

Please sign in to comment.