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 /libexec/identd/identd.c | |
parent | 5c3512bff36556eb83c2abecbf32b9ccdab08c9f (diff) |
volatile sig_atomic_t
Diffstat (limited to 'libexec/identd/identd.c')
-rw-r--r-- | libexec/identd/identd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/identd/identd.c b/libexec/identd/identd.c index dadf2fefde2..86561f9bc0f 100644 --- a/libexec/identd/identd.c +++ b/libexec/identd/identd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: identd.c,v 1.21 2001/09/19 10:58:07 mpech Exp $ */ +/* $OpenBSD: identd.c,v 1.22 2001/11/17 19:54:56 deraadt Exp $ */ /* * This program is in the public domain and may be used freely by anyone @@ -134,7 +134,7 @@ gethost6(addr) return(hbuf[bb]); } -sig_atomic_t alarm_fired; +volatile sig_atomic_t alarm_fired; /* * Exit cleanly after our time's up. |