aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/patch.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2013-03-21 23:23:49 -0500
committerRob Landley <rob@landley.net>2013-03-21 23:23:49 -0500
commit5cb3e2683bd8ca23bf8c38e13f3e0d68a642d586 (patch)
tree23ba7bb1c34e2d9cc3eca05798940c14e2068f58 /toys/posix/patch.c
parent6f5ef6fc86e11b3aa6cb08a530b1e44ae3d9295c (diff)
downloadtoybox-5cb3e2683bd8ca23bf8c38e13f3e0d68a642d586.tar.gz
Fix a bug in patch I fixed back in 2010 but forgot to apply here.
Diffstat (limited to 'toys/posix/patch.c')
-rw-r--r--toys/posix/patch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/patch.c b/toys/posix/patch.c
index 12e4b8c3..bb443484 100644
--- a/toys/posix/patch.c
+++ b/toys/posix/patch.c
@@ -394,7 +394,7 @@ void patch_main(void)
TT.filein = xcreate(name, O_CREAT|O_EXCL|O_RDWR, 0666);
} else {
printf("patching %s\n", name);
- TT.filein = xopen(name, O_RDWR);
+ TT.filein = xopen(name, O_RDONLY);
}
TT.fileout = copy_tempfile(TT.filein, name, &TT.tempname);
TT.linenum = 0;