aboutsummaryrefslogtreecommitdiff
path: root/src/lib/krb5/krb/in_tkt_pwd.c
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1991-02-19 10:13:47 +0000
committerJohn Kohl <jtkohl@mit.edu>1991-02-19 10:13:47 +0000
commita7aeb1c0a9e0c73f7125757bc8dd263e1a248b6c (patch)
tree6524b38372ccf7a1a534b4ce3baeeb2ec25916a5 /src/lib/krb5/krb/in_tkt_pwd.c
parentcce31e4f909c503eac8e78f2e39779bb3593e979 (diff)
downloadkrb5-a7aeb1c0a9e0c73f7125757bc8dd263e1a248b6c.zip
krb5-a7aeb1c0a9e0c73f7125757bc8dd263e1a248b6c.tar.gz
krb5-a7aeb1c0a9e0c73f7125757bc8dd263e1a248b6c.tar.bz2
update copyright notices
use xfree(x) rather than free((char *)x) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1726 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/krb/in_tkt_pwd.c')
-rw-r--r--src/lib/krb5/krb/in_tkt_pwd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/krb5/krb/in_tkt_pwd.c b/src/lib/krb5/krb/in_tkt_pwd.c
index 78b9ed6..412be24 100644
--- a/src/lib/krb5/krb/in_tkt_pwd.c
+++ b/src/lib/krb5/krb/in_tkt_pwd.c
@@ -2,7 +2,8 @@
* $Source$
* $Author$
*
- * Copyright 1990 by the Massachusetts Institute of Technology.
+ * Copyright 1990,1991 by the Massachusetts Institute of Technology.
+ * All Rights Reserved.
*
* For copying and distribution information, please see the file
* <krb5/copyright.h>.
@@ -15,7 +16,6 @@ static char rcsid_in_tkt_pwd_c[] =
"$Id$";
#endif /* !lint & !SABER */
-#include <krb5/copyright.h>
#include <krb5/krb5.h>
#include <krb5/ext-proto.h>
#include <krb5/libos-proto.h>
@@ -97,7 +97,7 @@ OLDDECLARG(krb5_pa_data **,padata)
*key,
&arg->password,
&salt)) {
- free((char *) *key);
+ xfree(*key);
if (f_salt) xfree(salt.data);
return(retval);
}