aboutsummaryrefslogtreecommitdiff
path: root/src/lib/krb4/unix_glue.c
blob: 93a30ed01fb2b919eef47f82899c7532943e7ad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * 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 */
}