aboutsummaryrefslogtreecommitdiff
path: root/src/lib/krb4/unix_glue.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/krb4/unix_glue.c')
-rw-r--r--src/lib/krb4/unix_glue.c40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/lib/krb4/unix_glue.c b/src/lib/krb4/unix_glue.c
deleted file mode 100644
index 93a30ed..0000000
--- a/src/lib/krb4/unix_glue.c
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * unix_glue.c
- *
- * Glue code for pasting Kerberos into the Unix environment.
- *
- * Originally written by John Gilmore, Cygnus Support, May '94.
- * Public Domain.
- */
-
-#include "krb.h"
-#include <sys/time.h>
-#include "krb4int.h"
-
-/* Start and end Kerberos library access. On Unix, this is a No-op. */
-int
-krb_start_session (x)
- char *x;
-{
- return KSUCCESS;
-}
-
-int
-krb_end_session (x)
- char *x;
-{
- return KSUCCESS;
-}
-
-char *
-krb_get_default_user ()
-{
- return 0; /* FIXME */
-}
-
-int
-krb_set_default_user (x)
- char *x;
-{
- return KFAILURE; /* FIXME */
-}