From d5d614c5f48a9151a257df717b46b8a850c1428b Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 9 Sep 2006 12:25:20 +0000 Subject: xopen3(O_RDONLY) -> xopen(O_RDONLY). --- modutils/insmod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modutils/insmod.c') diff --git a/modutils/insmod.c b/modutils/insmod.c index e57dd06dd..249563435 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c @@ -4325,7 +4325,7 @@ int insmod_ng_main( int argc, char **argv) strcat(options, " "); } - fd = xopen3(filename, O_RDONLY, 0); + fd = xopen(filename, O_RDONLY); fstat(fd, &st); len = st.st_size; -- cgit v1.2.3