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 } 32