summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-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;
+}