diff options
author | Denis Vlasenko | 2008-03-24 02:05:58 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-03-24 02:05:58 +0000 |
commit | 42cc304e9084843ad6b153afaf4b3f6c6528c364 (patch) | |
tree | 51d7cc0dfcd554658d980b9628180e39512f9b1b /editors/patch.c | |
parent | 39c77c37384f87075ad578855f0a11ecbf0681f3 (diff) | |
download | busybox-42cc304e9084843ad6b153afaf4b3f6c6528c364.zip busybox-42cc304e9084843ad6b153afaf4b3f6c6528c364.tar.gz |
lpr: add more accurate comments
*: trailing whitespace removal
Diffstat (limited to 'editors/patch.c')
-rw-r--r-- | editors/patch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/patch.c b/editors/patch.c index a37f4e6..a2d593d 100644 --- a/editors/patch.c +++ b/editors/patch.c @@ -136,7 +136,7 @@ int patch_main(int argc ATTRIBUTE_UNUSED, char **argv) src_stream = NULL; if (backup_filename && !stat(original_filename, &saved_stat)) { - src_stream = xfopen((strcmp(original_filename, new_filename)) ? + src_stream = xfopen((strcmp(original_filename, new_filename)) ? original_filename : backup_filename, "r"); } |