diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-17 19:54:58 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-17 19:54:58 +0000 |
commit | 3098cdb2aeca6d121a47df0401bd9d64682b3e9c (patch) | |
tree | cff90396a2f6df9ced0c2d1ac2cadc0c7877bc1c /sbin/mountd | |
parent | 5c3512bff36556eb83c2abecbf32b9ccdab08c9f (diff) |
volatile sig_atomic_t
Diffstat (limited to 'sbin/mountd')
-rw-r--r-- | sbin/mountd/mountd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/mountd/mountd.c b/sbin/mountd/mountd.c index ef90fcbd72b..e6e5b2075b2 100644 --- a/sbin/mountd/mountd.c +++ b/sbin/mountd/mountd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mountd.c,v 1.39 2001/11/05 07:39:16 mpech Exp $ */ +/* $OpenBSD: mountd.c,v 1.40 2001/11/17 19:54:57 deraadt Exp $ */ /* $NetBSD: mountd.c,v 1.31 1996/02/18 11:57:53 fvdl Exp $ */ /* @@ -216,8 +216,8 @@ int opt_flags; int debug = 0; -sig_atomic_t gothup; -sig_atomic_t gotterm; +volatile sig_atomic_t gothup; +volatile sig_atomic_t gotterm; /* * Mountd server for NFS mount protocol as described in: |