From ad5c168b30fc54715c81ca82171e8835901e341c Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Mon, 26 Oct 2020 11:25:21 +0900 Subject: [PATCH] signalh.h: Use the right config for SIGPIPE --- include/signal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/signal.h b/include/signal.h index 1846df2714b..6d85c04695d 100644 --- a/include/signal.h +++ b/include/signal.h @@ -179,10 +179,10 @@ # define SIGTERM CONFIG_SIG_TERM #endif -#ifndef CONFIG_SIG_SIGPIPE +#ifndef CONFIG_SIG_PIPE # define SIGPIPE 11 #else -# define SIGPIPE CONFIG_SIG_SIGPIPE +# define SIGPIPE CONFIG_SIG_PIPE #endif /* The following are non-standard signal definitions */