X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/e7c67065c060d500eba8d073da9568db2c658aad..b3bf9b9df95137a3a43248be9599d919b04877af:/chmod.c diff --git a/chmod.c b/chmod.c index 31ae6c0b..3d0d05df 100644 --- a/chmod.c +++ b/chmod.c @@ -2,11 +2,11 @@ * Implement the core of the --chmod option. * * Copyright (C) 2002 Scott Howard - * Copyright (C) 2005, 2006 Wayne Davison + * Copyright (C) 2005-2009 Wayne Davison * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, @@ -15,8 +15,7 @@ * 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., - * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. + * with this program; if not, visit the http://fsf.org website. */ #include "rsync.h" @@ -105,12 +104,12 @@ struct chmod_mode_struct *parse_chmod(const char *modestr, case 'D': if (flags & FLAG_FILES_ONLY) state = STATE_ERROR; - flags |= FLAG_DIRS_ONLY; + flags |= FLAG_DIRS_ONLY; break; case 'F': if (flags & FLAG_DIRS_ONLY) state = STATE_ERROR; - flags |= FLAG_FILES_ONLY; + flags |= FLAG_FILES_ONLY; break; case 'u': where |= 0100; @@ -151,7 +150,7 @@ struct chmod_mode_struct *parse_chmod(const char *modestr, what |= 2; break; case 'X': - flags |= FLAG_X_KEEP; + flags |= FLAG_X_KEEP; /* FALL THROUGH */ case 'x': what |= 1;