Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-06-14 13:29:48 +0400
committerMike Frysinger <vapier@gentoo.org>2007-06-14 13:29:48 +0400
commit0e0639b7020d5b6c58947393232c5445631767bd (patch)
tree8acbee2e95aa672e6b0469cabbcaae29d7b32318 /util-linux/mdev.c
parentd8540f71ac8d17ef461e2d52b3f63bd78b3c2c7e (diff)
Alex Landau writes: open firmware for reading, not writing
Diffstat (limited to 'util-linux/mdev.c')
-rw-r--r--util-linux/mdev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c
index fca4fd052..8743cdb6b 100644
--- a/util-linux/mdev.c
+++ b/util-linux/mdev.c
@@ -241,7 +241,7 @@ static inline void load_firmware(const char * const firmware, const char * const
/* check for /lib/firmware/$FIRMWARE */
xchdir("/lib/firmware");
- firmware_fd = xopen(firmware, O_WRONLY);
+ firmware_fd = xopen(firmware, O_RDONLY);
/* in case we goto out ... */
data_fd = -1;