aboutsummaryrefslogtreecommitdiffstats
path: root/chmod.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2007-09-30 07:30:48 +0000
committerWayne Davison <wayned@samba.org>2007-09-30 07:30:48 +0000
commiteb8f5c74e1c0711a557fd9ce9bd411500ff997d6 (patch)
treeb5450ead00923bdff74b7a25ca651f49f0b1b15f /chmod.c
parenta960239f392402581eea6aaeaa49da96e46247bf (diff)
downloadandroid_external_rsync-eb8f5c74e1c0711a557fd9ce9bd411500ff997d6.tar.gz
android_external_rsync-eb8f5c74e1c0711a557fd9ce9bd411500ff997d6.tar.bz2
android_external_rsync-eb8f5c74e1c0711a557fd9ce9bd411500ff997d6.zip
Got rid of some SPACE-TAB sequencs in the indentation.
Diffstat (limited to 'chmod.c')
-rw-r--r--chmod.c6
1 files changed, 3 insertions, 3 deletions
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;