X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fslocal.c;h=54960f31a52f7b2f7cfa3045b749f8c2a8c4537f;hb=a2469f5ecbca3a179251ac9b777b561bc5245d4c;hp=f10c76dec93f161c5dd8a101218388dd2113496a;hpb=aac9670c207aaefb17521c2ce4db39cb8893f660;p=mmh diff --git a/uip/slocal.c b/uip/slocal.c index f10c76d..54960f3 100644 --- a/uip/slocal.c +++ b/uip/slocal.c @@ -190,7 +190,7 @@ static int timely (char *, char *); static int usr_file (int, char *, int); static int usr_pipe (int, char *, char *, char **, int); static int usr_folder (int, char *); -static RETSIGTYPE alrmser (int); +static void alrmser (int); static void get_sender (char *, char **); static int copy_message (int, char *, int); static void verbose_printf (char *fmt, ...); @@ -1211,13 +1211,9 @@ usr_pipe (int fd, char *cmd, char *pgm, char **vec, int suppress) } -static RETSIGTYPE +static void alrmser (int i) { -#ifndef RELIABLE_SIGNALS - SIGNAL (SIGALRM, alrmser); -#endif - longjmp (myctx, DONE); }