blob: 672308452cd6466a349d42ea6960ec1139fa4527 (
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
|
#include "all.h"
/* this is all stubbed out; the NFS authentication stuff is now disabled - rob */
Xfid *
xfauth(Xfile *, String *)
{
return 0;
}
long
xfauthread(Xfid *xf, long, uchar *, long)
{
chat("xfauthread %s...", xf->uid);
return 0;
}
long
xfauthwrite(Xfid *xf, long, uchar *, long)
{
chat("xfauthwrite %s...", xf->uid);
return 0;
}
int
xfauthremove(Xfid *, char *)
{
chat("authremove...");
return -1;
}
|