]> arthur.barton.de Git - netatalk.git/commitdiff
fixed a typo
authordidg <didg>
Mon, 7 Oct 2002 19:14:41 +0000 (19:14 +0000)
committerdidg <didg>
Mon, 7 Oct 2002 19:14:41 +0000 (19:14 +0000)
libatalk/util/server_child.c

index afa9c6da8b5246c8df6a08f80d9ae184e2bcf288..d443eb2b0876eed74482e8dd3c20ef8b9d621b3e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: server_child.c,v 1.6 2002-10-05 13:20:13 didg Exp $
+ * $Id: server_child.c,v 1.7 2002-10-07 19:14:41 didg Exp $
  *
  * Copyright (c) 1997 Adrian Sun (asun@zoology.washington.edu)
  * All rights reserved. See COPYRIGHT.
@@ -40,7 +40,7 @@
 #ifndef WIFSTOPPED
 #define WIFSTOPPED(status) (((status) & 0xff) == 0x7f)
 #endif
-#ifndef WIFSIGNAL
+#ifndef WIFSIGNALED
 #define WIFSIGNALED(status) (!WIFSTOPPED(status) && !WIFEXITED(status)) 
 #endif