]> git.lizzy.rs Git - plan9front.git/blob - sys/src/cmd/9nfs/auth.c
dc: fix off by one in stack overflow check (thanks BurnZeZ)
[plan9front.git] / sys / src / cmd / 9nfs / auth.c
1 #include "all.h"
2
3 /* this is all stubbed out; the NFS authentication stuff is now disabled - rob */
4
5 Xfid *
6 xfauth(Xfile *, String *)
7 {
8         return 0;
9 }
10
11 long
12 xfauthread(Xfid *xf, long, uchar *, long)
13 {
14
15         chat("xfauthread %s...", xf->uid);
16         return 0;
17 }
18
19 long
20 xfauthwrite(Xfid *xf, long, uchar *, long)
21 {
22         chat("xfauthwrite %s...", xf->uid);
23         return 0;
24 }
25
26 int
27 xfauthremove(Xfid *, char *)
28 {
29         chat("authremove...");
30         return -1;
31 }