aboutsummaryrefslogtreecommitdiff
path: root/modutils/lsmod.c
diff options
context:
space:
mode:
authorPavel Roskin <proski@gnu.org>2000-07-17 20:18:42 +0000
committerPavel Roskin <proski@gnu.org>2000-07-17 20:18:42 +0000
commitcc8a66b113dbdf04082b6f7c9b0b58984d433028 (patch)
tree98490b8eadc4e44b46c073fa2d21de403a2b61d4 /modutils/lsmod.c
parent97562bd9d7fe18bdc4f63e6e80bdce980416a915 (diff)
downloadbusybox-w32-cc8a66b113dbdf04082b6f7c9b0b58984d433028.tar.gz
busybox-w32-cc8a66b113dbdf04082b6f7c9b0b58984d433028.tar.bz2
busybox-w32-cc8a66b113dbdf04082b6f7c9b0b58984d433028.zip
Moved functions used by "lsmod" from cat.c to utility.c
Adjusted to make lsmod and sh compilable as standalone apps. Comment fixes
Diffstat (limited to 'modutils/lsmod.c')
-rw-r--r--modutils/lsmod.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/modutils/lsmod.c b/modutils/lsmod.c
index d3b1bb79e..6eb9c56b8 100644
--- a/modutils/lsmod.c
+++ b/modutils/lsmod.c
@@ -28,13 +28,13 @@
28extern int lsmod_main(int argc, char **argv) 28extern int lsmod_main(int argc, char **argv)
29{ 29{
30#if defined BB_FEATURE_USE_DEVPS_PATCH 30#if defined BB_FEATURE_USE_DEVPS_PATCH
31 char *cmd[] = { "cat", "/dev/modules", "\0" }; 31 char *filename = "/dev/modules";
32#else 32#else
33#if ! defined BB_FEATURE_USE_PROCFS 33#if ! defined BB_FEATURE_USE_PROCFS
34#error Sorry, I depend on the /proc filesystem right now. 34#error Sorry, I depend on the /proc filesystem right now.
35#endif 35#endif
36 char *cmd[] = { "cat", "/proc/modules", "\0" }; 36 char *filename = "/proc/modules";
37#endif 37#endif
38 38
39 return(cat_main(3, cmd)); 39 return(print_file_by_name(filename));
40} 40}