diff options
| author | Wayne Davison <wayned@samba.org> | 2006-06-01 06:49:15 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2006-06-01 06:49:15 +0000 |
| commit | 19b8587654616db0b1a90de7d596ccafd882df19 (patch) | |
| tree | d4433d522335d192842e36b81b336881ccdf96c9 /options.c | |
| parent | 051f5df5261ccdff85fd4a9704738088f813797f (diff) | |
| download | android_external_rsync-19b8587654616db0b1a90de7d596ccafd882df19.tar.gz android_external_rsync-19b8587654616db0b1a90de7d596ccafd882df19.tar.bz2 android_external_rsync-19b8587654616db0b1a90de7d596ccafd882df19.zip | |
Fixed a typo that set stdout_format_has_i instead of logfile_format_has_i.
Diffstat (limited to 'options.c')
| -rw-r--r-- | options.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1316,7 +1316,7 @@ int parse_arguments(int *argc, const char ***argv, int frommain) logfile_format_has_i = logfile_format_has_o_or_i = 1; } else { if (log_format_has(logfile_format, 'i')) - stdout_format_has_i = 2; + logfile_format_has_i = 1; if (logfile_format_has_i || log_format_has(logfile_format, 'o')) logfile_format_has_o_or_i = 1; } |
