From: David Dykstra Date: Mon, 1 Mar 1999 21:22:54 +0000 (+0000) Subject: Change the mask used when creating temporary files from 777 to 700, to prevent X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/5afd8aedce004cc11700285c16ea84f1e857d473?hp=5afd8aedce004cc11700285c16ea84f1e857d473 Change the mask used when creating temporary files from 777 to 700, to prevent an obscure race-condition security hole where a file may for a short time have the wrong group. Could have used 707 instead but that's just too weird of a permission. The define name used to be ACCESSPERMS but that is defined as 777 on Linux, so changed the name to INITPERMMASK. ---