diff options
author | Denis Vlasenko | 2006-11-26 15:45:17 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-11-26 15:45:17 +0000 |
commit | cf749bc10c9e7b38217e102d0d3e7044e5515b4f (patch) | |
tree | af6c1681e91a3e5c13bf3dce8aa798c07462468a /miscutils/rx.c | |
parent | c1660fea6da93f4f8aacf0a9a65c2880ac58209a (diff) | |
download | busybox-cf749bc10c9e7b38217e102d0d3e7044e5515b4f.zip busybox-cf749bc10c9e7b38217e102d0d3e7044e5515b4f.tar.gz |
small fixes:
fix xstrdup to not grossly overallocate memory
use xopen instean of xopen3 in several places
etc.
Diffstat (limited to 'miscutils/rx.c')
-rw-r--r-- | miscutils/rx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/rx.c b/miscutils/rx.c index f723c16..9b9f6af 100644 --- a/miscutils/rx.c +++ b/miscutils/rx.c @@ -263,7 +263,7 @@ int rx_main(int argc, char **argv) fn = argv[1]; ttyfd = xopen(CURRENT_TTY, O_RDWR); - filefd = xopen3(fn, O_RDWR|O_CREAT|O_TRUNC, 0666); + filefd = xopen(fn, O_RDWR|O_CREAT|O_TRUNC); if (tcgetattr(ttyfd, &tty) < 0) bb_perror_msg_and_die("tcgetattr"); |