summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/ssp.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-12-01 20:29:52 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-12-01 20:29:52 +0000
commitfbb32ad9b6a4b6cffea1c5b4292b18c72cdadaf6 (patch)
tree0e3c04e3e9141adb9f9d47329c6ff46d6e5a5335 /libc/sysdeps/linux/common/ssp.c
parent513720b73b403c3c9aca3f25c085422f4132c292 (diff)
on Bernd's request, remove commented-out code snippets
Diffstat (limited to 'libc/sysdeps/linux/common/ssp.c')
-rw-r--r--libc/sysdeps/linux/common/ssp.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/ssp.c b/libc/sysdeps/linux/common/ssp.c
index 564e14d71..8a84e4893 100644
--- a/libc/sysdeps/linux/common/ssp.c
+++ b/libc/sysdeps/linux/common/ssp.c
@@ -58,7 +58,6 @@ static void block_signals(void)
/* Make the default handler associated with the signal handler */
memset(&sa, 0, sizeof(sa));
__sigfillset(&sa.sa_mask); /* Block all signals */
- /* sa.sa_flags = 0; - memset did it */
if (SIG_DFL) /* if it's constant zero, it's already done */
sa.sa_handler = SIG_DFL;
sigaction(SSP_SIGTYPE, &sa, NULL);