=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tftp/tftp.c,v retrieving revision 1.12 retrieving revision 1.13 diff -c -r1.12 -r1.13 *** src/usr.bin/tftp/tftp.c 2003/06/03 02:56:18 1.12 --- src/usr.bin/tftp/tftp.c 2003/06/10 22:20:53 1.13 *************** *** 1,4 **** ! /* $OpenBSD: tftp.c,v 1.12 2003/06/03 02:56:18 millert Exp $ */ /* $NetBSD: tftp.c,v 1.5 1995/04/29 05:55:25 cgd Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: tftp.c,v 1.13 2003/06/10 22:20:53 deraadt Exp $ */ /* $NetBSD: tftp.c,v 1.5 1995/04/29 05:55:25 cgd Exp $ */ /* *************** *** 34,40 **** #if 0 static char sccsid[] = "@(#)tftp.c 8.1 (Berkeley) 6/6/93"; #endif ! static const char rcsid[] = "$OpenBSD: tftp.c,v 1.12 2003/06/03 02:56:18 millert Exp $"; #endif /* not lint */ /* Many bug fixes are from Jim Guyton */ --- 34,40 ---- #if 0 static char sccsid[] = "@(#)tftp.c 8.1 (Berkeley) 6/6/93"; #endif ! static const char rcsid[] = "$OpenBSD: tftp.c,v 1.13 2003/06/10 22:20:53 deraadt Exp $"; #endif /* not lint */ /* Many bug fixes are from Jim Guyton */ *************** *** 409,422 **** struct timeval tstop; static void ! startclock() { (void)gettimeofday(&tstart, NULL); } static void ! stopclock() { (void)gettimeofday(&tstop, NULL); --- 409,422 ---- struct timeval tstop; static void ! startclock(void) { (void)gettimeofday(&tstart, NULL); } static void ! stopclock(void) { (void)gettimeofday(&tstop, NULL);