=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/readpass.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- src/usr.bin/ssh/readpass.c 1999/09/30 05:03:05 1.2 +++ src/usr.bin/ssh/readpass.c 1999/09/30 08:34:25 1.3 @@ -14,7 +14,7 @@ */ #include "includes.h" -RCSID("$Id: readpass.c,v 1.2 1999/09/30 05:03:05 deraadt Exp $"); +RCSID("$Id: readpass.c,v 1.3 1999/09/30 08:34:25 deraadt Exp $"); #include "xmalloc.h" #include "ssh.h" @@ -23,11 +23,11 @@ static struct termios saved_tio; /* Old interrupt signal handler for read_passphrase. */ -static RETSIGTYPE (*old_handler)(int sig) = NULL; +static void (*old_handler)(int sig) = NULL; /* Interrupt signal handler for read_passphrase. */ -RETSIGTYPE intr_handler(int sig) +void intr_handler(int sig) { /* Restore terminal modes. */ tcsetattr(fileno(stdin), TCSANOW, &saved_tio);