X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/a960239f392402581eea6aaeaa49da96e46247bf..eb8f5c74e1c0711a557fd9ce9bd411500ff997d6:/chmod.c diff --git a/chmod.c b/chmod.c index ce9e295b..a67db46b 100644 --- a/chmod.c +++ b/chmod.c @@ -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;