From: Todd C. Miller Date: Wed, 24 Nov 2010 16:23:44 +0000 (-0500) Subject: Add support for RHEL 6 file modes that include a trailing dot on files with an SELinu... X-Git-Tag: SUDO_1_7_5~94 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cbcac27b54e8f3804477e1b7e6b3189ca2054c5c;p=sudo Add support for RHEL 6 file modes that include a trailing dot on files with an SELinux security context --HG-- branch : 1.7 --- diff --git a/pp b/pp index af42adda1..96e7a7855 100755 --- a/pp +++ b/pp @@ -1,6 +1,6 @@ #!/bin/sh # (c) 2010 Quest Software, Inc. All rights reserved -pp_revision="297" +pp_revision="298" # Copyright 2010 Quest Software, Inc. All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -438,7 +438,7 @@ pp_unique () { pp_mode_strip_altaccess () { case "$1" in - ??????????+) + ??????????[+.]) echo `echo "$1" | cut -b -10`;; *) echo "$1";;