=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tftp/main.c,v retrieving revision 1.15 retrieving revision 1.16 diff -c -r1.15 -r1.16 *** src/usr.bin/tftp/main.c 2003/06/25 15:45:10 1.15 --- src/usr.bin/tftp/main.c 2003/06/25 21:09:37 1.16 *************** *** 1,4 **** ! /* $OpenBSD: main.c,v 1.15 2003/06/25 15:45:10 deraadt Exp $ */ /* $NetBSD: main.c,v 1.6 1995/05/21 16:54:10 mycroft Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: main.c,v 1.16 2003/06/25 21:09:37 deraadt Exp $ */ /* $NetBSD: main.c,v 1.6 1995/05/21 16:54:10 mycroft Exp $ */ /* *************** *** 40,46 **** #if 0 static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93"; #endif ! static const char rcsid[] = "$OpenBSD: main.c,v 1.15 2003/06/25 15:45:10 deraadt Exp $"; #endif /* not lint */ /* Many bug fixes are from Jim Guyton */ --- 40,46 ---- #if 0 static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93"; #endif ! static const char rcsid[] = "$OpenBSD: main.c,v 1.16 2003/06/25 21:09:37 deraadt Exp $"; #endif /* not lint */ /* Many bug fixes are from Jim Guyton */ *************** *** 85,91 **** char *margv[MAXARGV+1]; char *prompt = "tftp"; jmp_buf toplevel; ! void intr(); struct servent *sp; void get(int, char **); --- 85,91 ---- char *margv[MAXARGV+1]; char *prompt = "tftp"; jmp_buf toplevel; ! void intr(int); struct servent *sp; void get(int, char **); *************** *** 539,545 **** } void ! intr(void) { signal(SIGALRM, SIG_IGN); --- 539,545 ---- } void ! intr(int signo) { signal(SIGALRM, SIG_IGN);