Got rid of some SPACE-TAB sequencs in the indentation.
This commit is contained in:
6
chmod.c
6
chmod.c
@@ -104,12 +104,12 @@ struct chmod_mode_struct *parse_chmod(const char *modestr,
|
|||||||
case 'D':
|
case 'D':
|
||||||
if (flags & FLAG_FILES_ONLY)
|
if (flags & FLAG_FILES_ONLY)
|
||||||
state = STATE_ERROR;
|
state = STATE_ERROR;
|
||||||
flags |= FLAG_DIRS_ONLY;
|
flags |= FLAG_DIRS_ONLY;
|
||||||
break;
|
break;
|
||||||
case 'F':
|
case 'F':
|
||||||
if (flags & FLAG_DIRS_ONLY)
|
if (flags & FLAG_DIRS_ONLY)
|
||||||
state = STATE_ERROR;
|
state = STATE_ERROR;
|
||||||
flags |= FLAG_FILES_ONLY;
|
flags |= FLAG_FILES_ONLY;
|
||||||
break;
|
break;
|
||||||
case 'u':
|
case 'u':
|
||||||
where |= 0100;
|
where |= 0100;
|
||||||
@@ -150,7 +150,7 @@ struct chmod_mode_struct *parse_chmod(const char *modestr,
|
|||||||
what |= 2;
|
what |= 2;
|
||||||
break;
|
break;
|
||||||
case 'X':
|
case 'X':
|
||||||
flags |= FLAG_X_KEEP;
|
flags |= FLAG_X_KEEP;
|
||||||
/* FALL THROUGH */
|
/* FALL THROUGH */
|
||||||
case 'x':
|
case 'x':
|
||||||
what |= 1;
|
what |= 1;
|
||||||
|
|||||||
12
options.c
12
options.c
@@ -1200,9 +1200,9 @@ int parse_arguments(int *argc_p, const char ***argv_p, int frommain)
|
|||||||
break;
|
break;
|
||||||
#else
|
#else
|
||||||
/* FIXME: this should probably be ignored with a
|
/* FIXME: this should probably be ignored with a
|
||||||
* warning and then countermeasures taken to
|
* warning and then countermeasures taken to
|
||||||
* restrict group and other access in the presence
|
* restrict group and other access in the presence
|
||||||
* of any more restrictive ACLs, but this is safe
|
* of any more restrictive ACLs, but this is safe
|
||||||
* for now */
|
* for now */
|
||||||
snprintf(err_buf,sizeof(err_buf),
|
snprintf(err_buf,sizeof(err_buf),
|
||||||
"ACLs are not supported on this %s\n",
|
"ACLs are not supported on this %s\n",
|
||||||
@@ -1446,10 +1446,10 @@ int parse_arguments(int *argc_p, const char ***argv_p, int frommain)
|
|||||||
snprintf(err_buf, sizeof err_buf,
|
snprintf(err_buf, sizeof err_buf,
|
||||||
"--suffix cannot be a null string without --backup-dir\n");
|
"--suffix cannot be a null string without --backup-dir\n");
|
||||||
return 0;
|
return 0;
|
||||||
} else if (make_backups && delete_mode && !delete_excluded && !am_server) {
|
} else if (make_backups && delete_mode && !delete_excluded && !am_server) {
|
||||||
snprintf(backup_dir_buf, sizeof backup_dir_buf,
|
snprintf(backup_dir_buf, sizeof backup_dir_buf,
|
||||||
"P *%s", backup_suffix);
|
"P *%s", backup_suffix);
|
||||||
parse_rule(&filter_list, backup_dir_buf, 0, 0);
|
parse_rule(&filter_list, backup_dir_buf, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (make_backups && !backup_dir) {
|
if (make_backups && !backup_dir) {
|
||||||
|
|||||||
Reference in New Issue
Block a user