diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-08-28 23:39:36 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-08-28 23:39:36 +0000 |
commit | 8c1eda528a19b8af18568649e8d2b1ba5bda772e (patch) | |
tree | 86a919cdb73830bfb7e17f35f3e1615432b6157d /docs/new-applet-HOWTO.txt | |
parent | 73561cc75ac31e63bcab4b4ebfaf738e4ca225e6 (diff) | |
download | busybox-w32-8c1eda528a19b8af18568649e8d2b1ba5bda772e.tar.gz busybox-w32-8c1eda528a19b8af18568649e8d2b1ba5bda772e.tar.bz2 busybox-w32-8c1eda528a19b8af18568649e8d2b1ba5bda772e.zip |
- it's a mistake to remove lib-specific prefixes from libraries; still the removal should be complete.
Diffstat (limited to 'docs/new-applet-HOWTO.txt')
-rw-r--r-- | docs/new-applet-HOWTO.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/new-applet-HOWTO.txt b/docs/new-applet-HOWTO.txt index 7acc80bb2..1c2383f35 100644 --- a/docs/new-applet-HOWTO.txt +++ b/docs/new-applet-HOWTO.txt | |||
@@ -40,7 +40,7 @@ int mu_main(int argc, char **argv) | |||
40 | int fd; | 40 | int fd; |
41 | char mu; | 41 | char mu; |
42 | 42 | ||
43 | fd = bb_xopen("/dev/random", O_RDONLY); | 43 | fd = xopen("/dev/random", O_RDONLY); |
44 | 44 | ||
45 | if ((n = safe_read(fd, &mu, 1)) < 1) | 45 | if ((n = safe_read(fd, &mu, 1)) < 1) |
46 | bb_perror_msg_and_die("/dev/random"); | 46 | bb_perror_msg_and_die("/dev/random"); |