X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/8e41b68e8f975c02a5d9281be780ba5d1a385107..b3bf9b9df95137a3a43248be9599d919b04877af:/chmod.c diff --git a/chmod.c b/chmod.c index ce9e295b..3d0d05df 100644 --- a/chmod.c +++ b/chmod.c @@ -2,7 +2,7 @@ * Implement the core of the --chmod option. * * Copyright (C) 2002 Scott Howard - * Copyright (C) 2005-2007 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 @@ -104,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; @@ -150,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;