auth.c 424 B

12345678910111213141516171819202122232425262728293031
  1. #include "all.h"
  2. /* this is all stubbed out; the NFS authentication stuff is now disabled - rob */
  3. Xfid *
  4. xfauth(Xfile *, String *)
  5. {
  6. return 0;
  7. }
  8. long
  9. xfauthread(Xfid *xf, long, uchar *, long)
  10. {
  11. chat("xfauthread %s...", xf->uid);
  12. return 0;
  13. }
  14. long
  15. xfauthwrite(Xfid *xf, long, uchar *, long)
  16. {
  17. chat("xfauthwrite %s...", xf->uid);
  18. return 0;
  19. }
  20. int
  21. xfauthremove(Xfid *, char *)
  22. {
  23. chat("authremove...");
  24. return -1;
  25. }