From cf749bc10c9e7b38217e102d0d3e7044e5515b4f Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 26 Nov 2006 15:45:17 +0000 Subject: small fixes: fix xstrdup to not grossly overallocate memory use xopen instean of xopen3 in several places etc. --- miscutils/rx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'miscutils/rx.c') diff --git a/miscutils/rx.c b/miscutils/rx.c index f723c1676..9b9f6afd4 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"); -- cgit v1.2.3-55-g6feb