From 1560bcd9456e9c03a21f6d4aca8447f00ca339b7 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Mon, 23 Jun 2008 06:44:55 -0600 Subject: [PATCH] Fix typo. * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator. Signed-off-by: Eric Blake --- ChangeLog | 3 +++ tests/test-sigaction.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b6ffc1f131..c4f9c9ae5f 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 9ef3352f49..30c4744d1d 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 -- 2.30.2