summaryrefslogtreecommitdiff
path: root/tests/x509dn.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/x509dn.c')
-rw-r--r--tests/x509dn.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/x509dn.c b/tests/x509dn.c
index 27ad6f1cd4..920e83600d 100644
--- a/tests/x509dn.c
+++ b/tests/x509dn.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation
+ * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation
*
* Author: Simon Josefsson
*
@@ -520,14 +520,15 @@ doit (void)
server ();
wait (&status);
-#if defined(WIFEXITED) && defined(WEXITSTATUS)
+#if defined WIFEXITED && defined WEXITSTATUS
if (WIFEXITED (status) && WEXITSTATUS (status))
{
fail ("server: client failed with exit status %d\n",
WEXITSTATUS (status));
}
#endif
-#if defined(WIFSIGNALED) && defined(WTERMSIG)
+
+#if defined WIFSIGNALED && defined WTERMSIG
if (WIFSIGNALED (status))
{
fail ("server: client failed with fatal signal %d\n",