From: Eric Blake Date: Mon, 23 Jun 2008 12:44:55 +0000 (-0600) Subject: Fix typo. X-Git-Tag: v0.1~7228 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=1560bcd9456e9c03a21f6d4aca8447f00ca339b7;p=gnulib.git Fix typo. * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index b6ffc1f13..c4f9c9ae5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2008-06-23 Eric Blake + Fix typo. + * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator. + Avoid SA_ namespace. * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK. Reported by Ralf Wildenhues. diff --git a/tests/test-sigaction.c b/tests/test-sigaction.c index 9ef3352f4..30c4744d1 100644 --- a/tests/test-sigaction.c +++ b/tests/test-sigaction.c @@ -53,7 +53,7 @@ provide other flags as extensions, such as SA_RESTORER, that we must ignore in this test. */ #define MASK_SA_FLAGS (SA_NOCLDSTOP | SA_ONSTACK | SA_RESETHAND | SA_RESTART \ - SA_SIGINFO | SA_NOCLDWAIT | SA_NODEFER) + | SA_SIGINFO | SA_NOCLDWAIT | SA_NODEFER) /* This test is unsafe in the presence of an asynchronous SIGABRT, because we install a signal-handler that is intentionally not