home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pine / ccmd / cmusr.cnf < prev    next >
Encoding:
Text File  |  1988-08-19  |  1019 b   |  36 lines

  1. _ Author: Howie Kaye
  2. _
  3. _ Columbia University Center for Computing Activities, July 1986.
  4. _ Copyright (C) 1986, 1987, Trustees of Columbia University in the
  5. _ City of New York.  Permission is granted to any individual or
  6. _ institution to use, copy, or redistribute this software so long as
  7. _ it is not sold for profit, provided this copyright notice is
  8. _ retained.
  9. _
  10.  
  11. /* username parse errors */
  12. fnerror(NM, `Does not match username')
  13. fnerror(AMB,`Ambiguous')
  14.  
  15. /* parse a wild username */
  16. fnflag(WILD)                /* allow wild users */
  17. fnflag(NOUPD)                /* defer update of user table */
  18.                     /* even if /etc/passwd has been  */
  19.                     /* updated */
  20. fnflag(UPDONLY)                /* forced update of user table */
  21.                     /* parse will fail. */
  22.                     /* allows table to updated with  */
  23.                     /* no parse done. */
  24.                     /* when using this flag, you */
  25.                     /* must trap errors yourself, or */
  26.                     /* a "no such user error" will be */
  27.                     /* displayed */
  28. #if unix
  29. #include <pwd.h>
  30. #else
  31. struct passwd {
  32.   int x;
  33. };
  34. #endif
  35. pvtype(struct passwd **)_
  36.