The call to do_chmod() needed to be conditional.
[rsync/rsync.git] / backup.c
index b822358..8500043 100644 (file)
--- a/backup.c
+++ b/backup.c
@@ -14,9 +14,9 @@
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #include "rsync.h"
@@ -132,7 +132,9 @@ static int make_bak_dir(char *fullpath)
                                        full_fname(rel));
                        } else {
                                do_lchown(fullpath, st.st_uid, st.st_gid);
+#ifdef HAVE_CHMOD
                                do_chmod(fullpath, st.st_mode);
+#endif
                        }
                }
                *p = '/';