=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/finger/finger.c,v retrieving revision 1.13 retrieving revision 1.14 diff -c -r1.13 -r1.14 *** src/usr.bin/finger/finger.c 2003/06/03 02:56:08 1.13 --- src/usr.bin/finger/finger.c 2003/06/10 22:20:46 1.14 *************** *** 1,4 **** ! /* $OpenBSD: finger.c,v 1.13 2003/06/03 02:56:08 millert Exp $ */ /* * Copyright (c) 1989 The Regents of the University of California. --- 1,4 ---- ! /* $OpenBSD: finger.c,v 1.14 2003/06/10 22:20:46 deraadt Exp $ */ /* * Copyright (c) 1989 The Regents of the University of California. *************** *** 50,56 **** #ifndef lint /*static char sccsid[] = "from: @(#)finger.c 5.22 (Berkeley) 6/29/90";*/ ! static char rcsid[] = "$OpenBSD: finger.c,v 1.13 2003/06/03 02:56:08 millert Exp $"; #endif /* not lint */ /* --- 50,56 ---- #ifndef lint /*static char sccsid[] = "from: @(#)finger.c 5.22 (Berkeley) 6/29/90";*/ ! static char rcsid[] = "$OpenBSD: finger.c,v 1.14 2003/06/10 22:20:46 deraadt Exp $"; #endif /* not lint */ /* *************** *** 84,92 **** char tbuf[1024]; int ! main(argc, argv) ! int argc; ! char **argv; { extern int optind; extern char *__progname; --- 84,90 ---- char tbuf[1024]; int ! main(int argc, char *argv[]) { extern int optind; extern char *__progname; *************** *** 170,176 **** } void ! loginlist() { PERSON *pn; struct passwd *pw; --- 168,174 ---- } void ! loginlist(void) { PERSON *pn; struct passwd *pw; *************** *** 196,204 **** } void ! userlist(argc, argv) ! int argc; ! char **argv; { int i; PERSON *pn; --- 194,200 ---- } void ! userlist(int argc, char **argv) { int i; PERSON *pn;