From 92378cce7731283cbdb48d2379e08f1451510da6 Mon Sep 17 00:00:00 2001
From: Jilles Tjoelker <jilles@FreeBSD.org>
Date: Fri, 13 Aug 2010 13:36:18 +0000
Subject: [PATCH] sh: Fix shadowing of sigset.

---
 bin/sh/error.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/bin/sh/error.c b/bin/sh/error.c
index 1f981f061ae6..beb75fad2d8f 100644
--- a/bin/sh/error.c
+++ b/bin/sh/error.c
@@ -102,7 +102,7 @@ exraise(int e)
 void
 onint(void)
 {
-	sigset_t sigset;
+	sigset_t sigs;
 
 	/*
 	 * The !in_dotrap here is safe.  The only way we can arrive here
@@ -115,8 +115,8 @@ onint(void)
 		return;
 	}
 	intpending = 0;
-	sigemptyset(&sigset);
-	sigprocmask(SIG_SETMASK, &sigset, NULL);
+	sigemptyset(&sigs);
+	sigprocmask(SIG_SETMASK, &sigs, NULL);
 
 	/*
 	 * This doesn't seem to be needed, since main() emits a newline.