diff options
author | cy <cy@FreeBSD.org> | 2016-06-20 22:03:03 +0800 |
---|---|---|
committer | cy <cy@FreeBSD.org> | 2016-06-20 22:03:03 +0800 |
commit | 2fcd048e41baac601eaa5feed75439757b6a8ac0 (patch) | |
tree | 6ac1d251cd0c8f033fabd2d3281843505d5e312d | |
parent | ae42d9b3a49cf279e7e84e991a7d114d9a76fd6d (diff) | |
download | freebsd-ports-gnome-2fcd048e41baac601eaa5feed75439757b6a8ac0.tar.gz freebsd-ports-gnome-2fcd048e41baac601eaa5feed75439757b6a8ac0.tar.zst freebsd-ports-gnome-2fcd048e41baac601eaa5feed75439757b6a8ac0.zip |
Update 1.8.16 --> 1.8.17
PR: 210407
Submitted by: cy@
Approved by: garga@
MFH: 2016Q2
-rw-r--r-- | security/sudo/Makefile | 3 | ||||
-rw-r--r-- | security/sudo/distinfo | 5 | ||||
-rw-r--r-- | security/sudo/files/patch-fix_bz208198 | 35 | ||||
-rw-r--r-- | security/sudo/pkg-plist | 2 |
4 files changed, 6 insertions, 39 deletions
diff --git a/security/sudo/Makefile b/security/sudo/Makefile index 40f3d0036707..449a4a832b6c 100644 --- a/security/sudo/Makefile +++ b/security/sudo/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= sudo -PORTVERSION= 1.8.16 -PORTREVISION= 2 +PORTVERSION= 1.8.17 CATEGORIES= security MASTER_SITES= SUDO diff --git a/security/sudo/distinfo b/security/sudo/distinfo index 304ccf290ba3..7198c214a7fb 100644 --- a/security/sudo/distinfo +++ b/security/sudo/distinfo @@ -1,2 +1,3 @@ -SHA256 (sudo-1.8.16.tar.gz) = 2d83826fc5125bf073acc203dbda1cf2abeee017090ccc9dddb0431a53d5064d -SIZE (sudo-1.8.16.tar.gz) = 2707358 +TIMESTAMP = 1466427088 +SHA256 (sudo-1.8.17.tar.gz) = 62b12c4fa9a3ad4f20f6e7576bc6405b2ec8d76222ea44a1c94830c68cccec8c +SIZE (sudo-1.8.17.tar.gz) = 2786216 diff --git a/security/sudo/files/patch-fix_bz208198 b/security/sudo/files/patch-fix_bz208198 deleted file mode 100644 index 8ef2e1efea9e..000000000000 --- a/security/sudo/files/patch-fix_bz208198 +++ /dev/null @@ -1,35 +0,0 @@ ---- plugins/sudoers/pwutil.c Thu Apr 28 15:27:53 2016 -0600 -+++ plugins/sudoers/pwutil.c Wed May 04 08:55:21 2016 -0600 -@@ -139,8 +139,8 @@ - item = node->data; - sudo_debug_printf(SUDO_DEBUG_DEBUG, - "%s: uid %u [%s] -> user %s [%s] (cache hit)", __func__, -- (unsigned int)uid, key.registry, item->d.pw->pw_name, -- item->registry); -+ (unsigned int)uid, key.registry, -+ item->d.pw ? item->d.pw->pw_name : "unknown", item->registry); - goto done; - } - /* -@@ -202,8 +202,8 @@ - if ((node = rbfind(pwcache_byname, &key)) != NULL) { - item = node->data; - sudo_debug_printf(SUDO_DEBUG_DEBUG, -- "%s: user %s [%s] -> uid %u [%s] (cache hit)", __func__, name, -- key.registry, (unsigned int)item->d.pw->pw_uid, item->registry); -+ "%s: user %s [%s] -> uid %d [%s] (cache hit)", __func__, name, -+ key.registry, item->d.pw ? (int)item->d.pw->pw_uid : -1, item->registry); - goto done; - } - /* -@@ -461,8 +461,8 @@ - item = node->data; - sudo_debug_printf(SUDO_DEBUG_DEBUG, - "%s: gid %u [%s] -> group %s [%s] (cache hit)", __func__, -- (unsigned int)gid, key.registry, item->d.gr->gr_name, -- item->registry); -+ (unsigned int)gid, key.registry, -+ item->d.gr ? item->d.gr->gr_name : "unknown", item->registry); - goto done; - } - /* diff --git a/security/sudo/pkg-plist b/security/sudo/pkg-plist index f65f9c434d89..efb859c444a5 100644 --- a/security/sudo/pkg-plist +++ b/security/sudo/pkg-plist @@ -66,6 +66,8 @@ sbin/visudo %%NLS%%share/locale/it/LC_MESSAGES/sudoers.mo %%NLS%%share/locale/ja/LC_MESSAGES/sudo.mo %%NLS%%share/locale/ja/LC_MESSAGES/sudoers.mo +%%NLS%%share/locale/ko/LC_MESSAGES/sudo.mo +%%NLS%%share/locale/ko/LC_MESSAGES/sudoers.mo %%NLS%%share/locale/lt/LC_MESSAGES/sudoers.mo %%NLS%%share/locale/nb/LC_MESSAGES/sudo.mo %%NLS%%share/locale/nb/LC_MESSAGES/sudoers.mo |