summaryrefslogtreecommitdiffstats
path: root/package/sudo/sudo-0001-no-netgroup.patch
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2014-09-18 18:09:24 -0300
committerPeter Korsgaard <peter@korsgaard.com>2014-09-19 23:21:48 +0200
commitb7fcf3bc5643a75898c76d5610360b6560a695f2 (patch)
tree5bf542682744ff82385344f365ea158ef3ce27ae /package/sudo/sudo-0001-no-netgroup.patch
parent245d8191b907da829f20298b0c0c1df443032086 (diff)
downloadbuildroot-b7fcf3bc5643a75898c76d5610360b6560a695f2.tar.gz
buildroot-b7fcf3bc5643a75898c76d5610360b6560a695f2.zip
sudo: bump to version 1.8.10p3
Also add hashes, kill some whitespace and correct the license type (ICS->ISC). Enable $EDITOR to point to the right editor for visudo since it normally expects /usr/bin/vi which in busybox-world is /bin/vi (and some people might want to use other editors like the operating system sized one). Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/sudo/sudo-0001-no-netgroup.patch')
-rw-r--r--package/sudo/sudo-0001-no-netgroup.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/package/sudo/sudo-0001-no-netgroup.patch b/package/sudo/sudo-0001-no-netgroup.patch
new file mode 100644
index 0000000000..64b870c67a
--- /dev/null
+++ b/package/sudo/sudo-0001-no-netgroup.patch
@@ -0,0 +1,29 @@
+# HG changeset patch
+# User Todd C. Miller <Todd.Miller@courtesan.com>
+# Date 1406550172 21600
+# Node ID 57deb66ef8ffc0f551d460e15a34f7df78f54d2a
+# Parent f547bf80c436c07ddb1c7385d22db96862ae7e4f
+Fix compilation on systems w/o netgroups.
+
+Status: upstream
+
+Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
+
+diff -r f547bf80c436 -r 57deb66ef8ff plugins/sudoers/match.c
+--- a/plugins/sudoers/match.c Sat Jul 26 06:07:34 2014 -0600
++++ b/plugins/sudoers/match.c Mon Jul 28 06:22:52 2014 -0600
+@@ -972,12 +972,12 @@
+ rc = true;
+ else if (lhost != shost && innetgr(netgr, shost, user, domain))
+ rc = true;
+-#endif /* HAVE_INNETGR */
+
+ sudo_debug_printf(SUDO_DEBUG_DEBUG|SUDO_DEBUG_LINENO,
+ "netgroup %s matches (%s|%s, %s, %s): %s", netgr, lhost ? lhost : "",
+ shost ? shost : "", user ? user : "", domain ? domain : "",
+ rc ? "true" : "false");
++#endif /* HAVE_INNETGR */
+
+ debug_return_bool(rc);
+ }
+
OpenPOWER on IntegriCloud