diff options
author | Khem Raj <raj.khem@gmail.com> | 2017-06-25 22:34:41 -0700 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2017-06-28 10:29:39 -0400 |
commit | 841bb94ce8bfe62515e266c346752c60ce3c9b1b (patch) | |
tree | d2a9530bb6a11c386d02b67ba1b1e6cdc0d32af2 /meta-networking/recipes-daemons/squid/files | |
parent | 4267eede662006f54694d6062ceea98835b99dd6 (diff) | |
download | meta-openembedded-841bb94ce8bfe62515e266c346752c60ce3c9b1b.tar.gz |
squid: Fix build with hardening
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-daemons/squid/files')
-rw-r--r-- | meta-networking/recipes-daemons/squid/files/0001-tools.cc-fixed-unused-result-warning.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/meta-networking/recipes-daemons/squid/files/0001-tools.cc-fixed-unused-result-warning.patch b/meta-networking/recipes-daemons/squid/files/0001-tools.cc-fixed-unused-result-warning.patch new file mode 100644 index 000000000..082a1114b --- /dev/null +++ b/meta-networking/recipes-daemons/squid/files/0001-tools.cc-fixed-unused-result-warning.patch | |||
@@ -0,0 +1,36 @@ | |||
1 | From a78f2f0feda8f92cb59afe8236bd90726908768f Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Sun, 25 Jun 2017 00:59:24 -0700 | ||
4 | Subject: [PATCH] tools.cc: fixed unused-result warning | ||
5 | |||
6 | fix | ||
7 | | ../../squid-3.5.26/src/tools.cc: In function 'void enter_suid()': | ||
8 | | ../../squid-3.5.26/src/tools.cc:616:11: error: ignoring return value of 'int setuid(__uid_t)', declared with attribute warn_unused_result [-Werror=unused-result] | ||
9 | | setuid(0); | ||
10 | | ~~~~~~^~~ | ||
11 | |||
12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
13 | --- | ||
14 | Upstream-Status: Submitted | ||
15 | |||
16 | src/tools.cc | 4 ++-- | ||
17 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
18 | |||
19 | diff --git a/src/tools.cc b/src/tools.cc | ||
20 | index 8137a03..843e266 100644 | ||
21 | --- a/src/tools.cc | ||
22 | +++ b/src/tools.cc | ||
23 | @@ -612,8 +612,8 @@ enter_suid(void) | ||
24 | if (setresuid((uid_t)-1, 0, (uid_t)-1) < 0) | ||
25 | debugs (21, 3, "enter_suid: setresuid failed: " << xstrerror ()); | ||
26 | #else | ||
27 | - | ||
28 | - setuid(0); | ||
29 | + if (setuid(0) < 0) | ||
30 | + debugs(50, DBG_IMPORTANT, "WARNING: no_suid: setuid(0): " << xstrerror()); | ||
31 | #endif | ||
32 | #if HAVE_PRCTL && defined(PR_SET_DUMPABLE) | ||
33 | /* Set Linux DUMPABLE flag */ | ||
34 | -- | ||
35 | 2.13.1 | ||
36 | |||