update copyright notices
authorJohn Kohl <jtkohl@mit.edu>
Tue, 19 Feb 1991 10:13:47 +0000 (10:13 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Tue, 19 Feb 1991 10:13:47 +0000 (10:13 +0000)
use xfree(x) rather than free((char *)x)

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1726 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb425/mk_req.c
src/lib/krb425/set_key.c
src/lib/krb5/krb/in_tkt_pwd.c
src/lib/krb5/krb/mk_error.c
src/lib/krb5/krb/mk_priv.c
src/lib/krb5/krb/mk_safe.c
src/lib/krb5/os/free_krbhs.c
src/lib/krb5/os/get_krbhst.c
src/lib/krb5/os/localaddr.c
src/lib/krb5/os/read_pwd.c
src/lib/krb5/os/sendto_kdc.c

index 30ec9daf2333928390afef28fa3a1a1f9ccbee08..188f6b641a84ad30f684bebf5b00213236088761 100644 (file)
@@ -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_mk_req_c[] =
 "$Id$";
 #endif /* !lint & !SABER */
 
-#include <krb5/copyright.h>
 #include "krb425.h"
 
 int
@@ -68,12 +68,12 @@ u_long checksum;
                        EPRINT "Return to long (%d > %d)\n",
                                outbuf.length, MAX_KTXT_LEN);
 #endif
-                       free((char *)outbuf.data);
+                       xfree(outbuf.data);
                        return(KFAILURE);
                }
                authent->length = outbuf.length;
                memcpy((char *)authent->dat, (char *)outbuf.data, outbuf.length);
-               free((char *)outbuf.data);
+               xfree(outbuf.data);
        }
        return(krb425error(r));
 }
index a25d1a03531b66d909a4388e817c285e296e8027..4e8964cc42cacd2f5f96b56b3754816e7bd87859 100644 (file)
@@ -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_set_key_c[] =
 "$Id$";
 #endif /* !lint & !SABER */
 
-#include <krb5/copyright.h>
 #include "krb425.h"
 
 int
@@ -27,7 +27,7 @@ int cvt;
 
        if (cvt) {
                if (keyblock.contents)
-                       free((char *)keyblock.contents);
+                       xfree(keyblock.contents);
                mit_des_string_to_key(KEYTYPE_DES, &keyblock, 0, 0);
        } else {
                if (!keyblock.contents &&
index 78b9ed6dc5dea02d47e8ae85cc7dfa015c62654d..412be24893bcf7604bd4b8dd1fbd3cb7ee68701b 100644 (file)
@@ -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);
     }
index 8fae668c111ed0e1149d7a3b2da852eac4be4a46..f33b4027117bb2d2fe1ef78dce75e728a170884c 100644 (file)
@@ -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,8 +16,6 @@ static char rcsid_mk_error_c [] =
 "$Id$";
 #endif /* !lint & !SABER */
 
-#include <krb5/copyright.h>
-
 #include <krb5/krb5.h>
 #include <krb5/asn1.h>
 
@@ -41,6 +40,6 @@ krb5_data *enc_err;
     if (retval = encode_krb5_error(dec_err, &new_enc_err))
        return(retval);
     *enc_err = *new_enc_err;
-    (void)free((char *)new_enc_err);
+    xfree(new_enc_err);
     return 0;
 }
index 483b1007b5cedcbcad623a78c26864808bac584e..d4c1e0b33313e5814da0953337bb917895951694 100644 (file)
@@ -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_mk_priv_c[] =
 "$Id$";
 #endif /* !lint & !SABER */
 
-#include <krb5/copyright.h>
 #include <krb5/krb5.h>
 #include <krb5/asn1.h>
 #include <krb5/libos-proto.h>
@@ -158,7 +158,7 @@ privmsg.enc_part.ciphertext.length = 0; privmsg.enc_part.ciphertext.data = 0;}
 
     cleanup_encpart();
     *outbuf = *scratch;
-    free((char *)scratch);
+    xfree(scratch);
     return 0;
 
  clean_prockey:
index 12fb9638efacf112a8d1770cc5e8c0af718856b8..5fe61d61065e31964d8772315dc1255038055921 100644 (file)
@@ -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,9 +16,7 @@ static char rcsid_mk_safe_c[] =
 "$Id$";
 #endif /* !lint & !SABER */
 
-#include <krb5/copyright.h>
 #include <krb5/krb5.h>
-
 #include <krb5/asn1.h>
 #include <krb5/libos-proto.h>
 #include <krb5/ext-proto.h>
@@ -122,7 +121,7 @@ OLDDECLARG(krb5_data *, outbuf)
     }
     xfree(safe_checksum.contents);
     *outbuf = *scratch;
-    free((char *)scratch);
+    xfree(scratch);
 
     return 0;
 }
index 04317babc67c7453ecec1e44b2400d609da1e1a9..1e998cf61c1a120fe9b3a206de6dc38adc1f8c2d 100644 (file)
@@ -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,8 +16,6 @@ static char rcsid_free_krbhs_c[] =
 "$Id$";
 #endif /* !lint & !SABER */
 
-#include <krb5/copyright.h>
-
 #include <krb5/krb5.h>
 
 #include <krb5/ext-proto.h>
@@ -33,6 +32,6 @@ char * const *hostlist;
 
     for (cp = hostlist; *cp; cp++)
        free(*cp);
-    free((char *)hostlist);
+    xfree(hostlist);
     return 0;
 }
index 6845e9136b580d87b1261e008d3f824741b3827b..6660708ca3785ec3c44fe7265ddb252eb9faf873 100644 (file)
@@ -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,8 +16,6 @@ static char rcsid_get_krbhst_c [] =
 "$Id$";
 #endif /* !lint & !SABER */
 
-#include <krb5/copyright.h>
-
 #include <krb5/krb5.h>
 #include <krb5/ext-proto.h>
 #include <stdio.h>
@@ -99,7 +98,7 @@ char ***hostlist;
            if (!rethlist[hlindex]) {
                for (--hlindex; hlindex >= 0; hlindex--)
                    free(rethlist[hlindex]);
-               free((char *) rethlist);
+               xfree(rethlist);
                rethlist = 0;
                retval = ENOMEM;
                break;
@@ -129,7 +128,7 @@ char ***hostlist;
     (void) fclose(config_file);
 
     if (hlindex == 0) {
-       free((char *)rethlist);
+       xfree(rethlist);
        rethlist = 0;
        retval = KRB5_REALM_UNKNOWN;
     }
index d5fe6ee6c6c9d94d2116c8ee9759524b9575559b..335788a328387708c6a57c6b01971a5dd41b91e8 100644 (file)
@@ -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>.
@@ -17,7 +18,6 @@ static char rcsid_getaddr_c[] =
 "$Id$";
 #endif /* !lint & !SABER */
 
-#include <krb5/copyright.h>
 #include <krb5/krb5.h>
 #include <krb5/osconf.h>
 
@@ -138,7 +138,7 @@ krb5_error_code krb5_os_localaddr(addr)
                    address->length = sizeof(struct in_addr);
                    address->contents = (unsigned char *)malloc(address->length);
                    if (!address->contents) {
-                       free((char *)address);
+                       xfree(address);
                        address = 0;
                        mem_err++;
                    } else {
@@ -165,7 +165,7 @@ krb5_error_code krb5_os_localaddr(addr)
                    address->length = sizeof(struct ns_addr);
                    address->contents = (unsigned char *)malloc(address->length);
                    if (!address->contents) {
-                       free((char *)address);
+                       xfree(address);
                        address = 0;
                        mem_err++;
                    } else {
@@ -196,7 +196,7 @@ krb5_error_code krb5_os_localaddr(addr)
     
     if (mem_err) {
        for (i=0; i<n_found; i++) {
-           free((char *)addr_temp[i]);
+           xfree(addr_temp[i]);
            addr_temp[i] = 0;
        }
        return ENOMEM;
index 367d5ecee155d123958281cec52608dfa14b5b10..6140f593a9d6d29152e180509de770d0adf6bdff 100644 (file)
@@ -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,8 +16,6 @@ static char rcsid_read_pwd_c[] =
 "$Id$";
 #endif /* lint */
 
-#include <krb5/copyright.h>
-
 #include <krb5/krb5.h>
 
 #include <stdio.h>
@@ -99,7 +98,7 @@ int *size_return;
        /* interrupted */
        if (readin_string) {
            (void) memset((char *)readin_string, 0, *size_return);
-           free((char *)readin_string);
+           xfree(readin_string);
        }
        (void) memset(return_pwd, 0, *size_return);
        cleanup(KRB5_LIBOS_PWDINTR);
@@ -144,7 +143,7 @@ int *size_return;
            (void) putchar('\n');
            (void) memset((char *)readin_string, 0, *size_return);
            (void) memset(return_pwd, 0, *size_return);
-           free((char *)readin_string);
+           xfree(readin_string);
            cleanup(KRB5_LIBOS_CANTREADPWD);
        }
        (void) putchar('\n');
@@ -160,11 +159,11 @@ int *size_return;
        if (strncmp(return_pwd, (char *)readin_string, *size_return)) {
            (void) memset((char *)readin_string, 0, *size_return);
            (void) memset(return_pwd, 0, *size_return);
-           free((char *)readin_string);
+           xfree(readin_string);
            cleanup(KRB5_LIBOS_BADPWDMATCH);
        }
        (void) memset((char *)readin_string, 0, *size_return);
-       free((char *)readin_string);
+       xfree(readin_string);
     }
     
     /* reset intrfunc */
index bdb756407dde887efdeff12b38fcaadc6d2af828..b7e19d19ddfb120ffe91de02936f88542ffc3aea 100644 (file)
@@ -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>.
@@ -16,8 +17,6 @@ static char rcsid_sendto_kdc_c[] =
 "$Id$";
 #endif /* !lint & !SABER */
 
-#include <krb5/copyright.h>
-
 #include <krb5/krb5.h>
 #include <krb5/ext-proto.h>
 
@@ -78,7 +77,7 @@ OLDDECLARG(krb5_data *, reply)
        socklist[i] = -1;
 
     if (!(reply->data = malloc(krb5_max_dgram_size))) {
-       free((char *)addr);
+       xfree(addr);
        return ENOMEM;
     }
     reply->length = krb5_max_dgram_size;
@@ -170,7 +169,7 @@ OLDDECLARG(krb5_data *, reply)
     for (i = 0; i < AF_MAX; i++)
        if (socklist[i] != -1)
            (void) close(socklist[i]);
-    free((char *)addr);
+    xfree(addr);
     if (retval) {
        free(reply->data);
        reply->data = 0;