summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1990-03-07 16:39:41 +0000
committerJohn Kohl <jtkohl@mit.edu>1990-03-07 16:39:41 +0000
commit6facbbede70f7e7a08b038a44ea9f4d8a1993143 (patch)
treeb09aa1e861716df20cd265f3b87c5d0d37f5c2dd /src
parent20921f1812664f15a93a61d9d11b1ea22ef8bd5f (diff)
downloadkrb5-6facbbede70f7e7a08b038a44ea9f4d8a1993143.tar.gz
krb5-6facbbede70f7e7a08b038a44ea9f4d8a1993143.tar.xz
krb5-6facbbede70f7e7a08b038a44ea9f4d8a1993143.zip
*** empty log message ***
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@367 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/lib/krb5/os/free_krbhs.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/lib/krb5/os/free_krbhs.c b/src/lib/krb5/os/free_krbhs.c
new file mode 100644
index 000000000..503f55808
--- /dev/null
+++ b/src/lib/krb5/os/free_krbhs.c
@@ -0,0 +1,38 @@
+/*
+ * $Source$
+ * $Author$
+ *
+ * Copyright 1990 by the Massachusetts Institute of Technology.
+ *
+ * For copying and distribution information, please see the file
+ * <krb5/mit-copyright.h>.
+ *
+ * krb5_free_krbhst() function
+ */
+
+#if !defined(lint) && !defined(SABER)
+static char free_krbhs_c[] =
+"$Id$";
+#endif /* !lint & !SABER */
+
+#include <krb5/copyright.h>
+
+#include <krb5/krb5.h>
+
+#include <krb5/ext-proto.h>
+
+/*
+ Frees the storage taken by a host list returned by krb5_get_krbhst.
+ */
+
+krb5_error_code
+krb5_free_krbhst(hostlist)
+char **hostlist;
+{
+ register char **cp;
+
+ for (cp = hostlist; *cp; cp++)
+ free(*cp);
+ free((char *)hostlist);
+ return 0;
+}