[BACK]Return to finger.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / finger

Diff for /src/usr.bin/finger/finger.c between version 1.15 and 1.16

version 1.15, 2003/10/17 10:56:09 version 1.16, 2004/03/15 02:50:29
Line 43 
Line 43 
  */   */
   
 #ifndef lint  #ifndef lint
 char copyright[] =  static const char copyright[] =
 "@(#) Copyright (c) 1989 The Regents of the University of California.\n\  "@(#) Copyright (c) 1989 The Regents of the University of California.\n\
  All rights reserved.\n";   All rights reserved.\n";
 #endif /* not lint */  #endif /* not lint */
   
 #ifndef lint  #ifndef lint
 /*static char sccsid[] = "from: @(#)finger.c    5.22 (Berkeley) 6/29/90";*/  /*static char sccsid[] = "from: @(#)finger.c    5.22 (Berkeley) 6/29/90";*/
 static char rcsid[] = "$OpenBSD$";  static const char rcsid[] = "$OpenBSD$";
 #endif /* not lint */  #endif /* not lint */
   
 /*  /*
Line 82 
Line 82 
 time_t now;  time_t now;
 int entries, lflag, sflag, mflag, oflag, pplan, Mflag;  int entries, lflag, sflag, mflag, oflag, pplan, Mflag;
 char tbuf[1024];  char tbuf[1024];
   PERSON *htab[HSIZE];
   PERSON *phead, *ptail;
   
 int  int
 main(int argc, char *argv[])  main(int argc, char *argv[])

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16