home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / unix / ultrix / 8196 < prev    next >
Encoding:
Internet Message Format  |  1992-11-09  |  1.1 KB

  1. Xref: sparky comp.unix.ultrix:8196 comp.unix.admin:6114
  2. Newsgroups: comp.unix.ultrix,comp.unix.admin
  3. Path: sparky!uunet!think.com!ames!haven.umd.edu!decuac!hussar.dco.dec.com!mjr
  4. From: mjr@hussar.dco.dec.com (Marcus J. Ranum)
  5. Subject: Re: /etc/group BUG ultrix4.2A
  6. Message-ID: <1992Nov10.014436.28137@decuac.dec.com>
  7. Sender: news@decuac.dec.com (USENET News System)
  8. Nntp-Posting-Host: hussar.dco.dec.com
  9. Organization: Digital Equipment Corporation, Washington ULTRIX Resource Center
  10. References: <BxH3F8.6u9@alsvid.une.edu.au>
  11. Date: Tue, 10 Nov 1992 01:44:36 GMT
  12. Lines: 19
  13.  
  14. >the length of group entries
  15. >is fixed at 1024 bytes.
  16.  
  17.     Ayup. Brought to you by the wonder of fixed sized buffers:
  18.  
  19. char line1[BUFSIZ+1];
  20.  
  21.     BSD appears to have "solved" this problem by rearranging the
  22. code so it's easier to increase the size of the line buffer - but they
  23. didn't increase it:
  24. #define MAXLINELENGTH   1024
  25. static char line[MAXLINELENGTH];
  26.  
  27.     There's also a hard limit to the number of members that can
  28. be in a group, namely 200 "or so"
  29.  
  30.     Not likely to be a workaround other than breaking out some groups.
  31.  
  32. mjr.
  33.