You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2017/02/25 11:44:36 UTC

svn commit: r1784367 - /subversion/trunk/tools/hook-scripts/reject-known-sha1-collisions.sh

Author: stsp
Date: Sat Feb 25 11:44:36 2017
New Revision: 1784367

URL: http://svn.apache.org/viewvc?rev=1784367&view=rev
Log:
* tools/hook-scripts/reject-known-sha1-collisions.sh: Support filenames with spaces.

Found by: danielsh

Modified:
    subversion/trunk/tools/hook-scripts/reject-known-sha1-collisions.sh

Modified: subversion/trunk/tools/hook-scripts/reject-known-sha1-collisions.sh
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/hook-scripts/reject-known-sha1-collisions.sh?rev=1784367&r1=1784366&r2=1784367&view=diff
==============================================================================
--- subversion/trunk/tools/hook-scripts/reject-known-sha1-collisions.sh (original)
+++ subversion/trunk/tools/hook-scripts/reject-known-sha1-collisions.sh Sat Feb 25 11:44:36 2017
@@ -36,8 +36,7 @@ if [ $? -ne 0 ]; then
   exit 2
 fi
 
-FILES=`$SVNLOOK changed -t "$TXN" "$REPOS" | /usr/bin/grep -Ev '^D ' | /usr/bin/awk '{print $2}'`
-for FILE in $FILES; do
+$SVNLOOK changed -t "$TXN" "$REPOS" | /usr/bin/grep -Ev '^D ' | /usr/bin/cut -c3 | while read FILE; do
   PREFIX=`$SVNLOOK cat -t "$TXN" "$REPOS" "$FILE" | head -c320 | /usr/bin/sha1sum | cut -c-40`
   if [ "$PREFIX" == 'f92d74e3874587aaf443d1db961d4e26dde13e9c' ]; then
         echo "known SHA-1 collision rejected" >&2