aboutsummaryrefslogtreecommitdiffstats
path: root/plpnfsd
diff options
context:
space:
mode:
authorFritz Elfert <felfert@to.com>2001-01-14 20:54:55 +0000
committerFritz Elfert <felfert@to.com>2001-01-14 20:54:55 +0000
commit2714ee8817522b83b87d47d3b862edf528b98ba4 (patch)
tree3cb1eaf21f76e5b4afdbaade08e3808690451027 /plpnfsd
parent4d31a7a076c0a13e29ced9228a1671c34144b39f (diff)
downloadplptools-2714ee8817522b83b87d47d3b862edf528b98ba4.tar.gz
plptools-2714ee8817522b83b87d47d3b862edf528b98ba4.tar.bz2
plptools-2714ee8817522b83b87d47d3b862edf528b98ba4.zip
Added check for return type of signal.
Diffstat (limited to 'plpnfsd')
-rw-r--r--plpnfsd/mp_mount.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plpnfsd/mp_mount.c b/plpnfsd/mp_mount.c
index a655fe8..6f9d203 100644
--- a/plpnfsd/mp_mount.c
+++ b/plpnfsd/mp_mount.c
@@ -124,14 +124,14 @@ static char *mntdir; /* where we mounted the psion */
static void doexit(void);
#endif
-static void
+static RETSIGTYPE
usr1_handler SIGARG
{
debug = (debug + 1) & 3;
infolog("Set debug level to %d\n", debug);
};
-static void
+static RETSIGTYPE
hup_handler SIGARG
{
if (debug > 1)
@@ -139,7 +139,7 @@ hup_handler SIGARG
exiting = 5;
};
-static void
+static RETSIGTYPE
term_handler SIGARG
{
if (debug > 1)