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:
authorMatt Kraai <kraai@debian.org>2000-12-01 05:55:13 +0300
committerMatt Kraai <kraai@debian.org>2000-12-01 05:55:13 +0300
commit3e856ce428cabaf6c8d99a2374a1f9a4a05db5f0 (patch)
tree013a1e7752113314831ad7d51854ce8dc9e0918b /modutils
parentb558e76eb1ba173ce3501c3e13fb80f426a7faac (diff)
Stop using TRUE and FALSE for exit status.
Diffstat (limited to 'modutils')
-rw-r--r--modutils/insmod.c12
-rw-r--r--modutils/rmmod.c8
2 files changed, 10 insertions, 10 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c
index 4f96c950e..6386b9407 100644
--- a/modutils/insmod.c
+++ b/modutils/insmod.c
@@ -77,7 +77,7 @@
#ifndef MODUTILS_MODULE_H
#define MODUTILS_MODULE_H 1
-#ident "$Id: insmod.c,v 1.28 2000/10/23 18:03:46 kraai Exp $"
+#ident "$Id: insmod.c,v 1.29 2000/12/01 02:55:13 kraai Exp $"
/* This file contains the structures used by the 2.0 and 2.1 kernels.
We do not use the kernel headers directly because we do not wish
@@ -283,7 +283,7 @@ int delete_module(const char *);
#ifndef MODUTILS_OBJ_H
#define MODUTILS_OBJ_H 1
-#ident "$Id: insmod.c,v 1.28 2000/10/23 18:03:46 kraai Exp $"
+#ident "$Id: insmod.c,v 1.29 2000/12/01 02:55:13 kraai Exp $"
/* The relocatable object is manipulated using elfin types. */
@@ -2769,7 +2769,7 @@ extern int insmod_main( int argc, char **argv)
FILE *fp;
struct obj_file *f;
char m_name[BUFSIZ + 1] = "\0";
- int exit_status = FALSE;
+ int exit_status = EXIT_FAILURE;
int m_has_modinfo;
#ifdef BB_FEATURE_INSMOD_VERSION_CHECKING
int k_version;
@@ -2833,7 +2833,7 @@ extern int insmod_main( int argc, char **argv)
|| ((fp = fopen(m_filename, "r")) == NULL))
{
errorMsg("No module named '%s' found in '%s'\n", m_fullName, _PATH_MODULES);
- exit(FALSE);
+ return EXIT_FAILURE;
}
} else
fatalError("No module named '%s' found in '%s'\n", m_fullName, _PATH_MODULES);
@@ -2843,7 +2843,7 @@ extern int insmod_main( int argc, char **argv)
if ((f = obj_load(fp)) == NULL) {
perror("Could not load the module\n");
- exit(FALSE);
+ return EXIT_FAILURE;
}
if (get_modinfo_value(f, "kernel_version") == NULL)
@@ -2981,7 +2981,7 @@ extern int insmod_main( int argc, char **argv)
goto out;
}
- exit_status = TRUE;
+ exit_status = EXIT_SUCCESS;
out:
fclose(fp);
diff --git a/modutils/rmmod.c b/modutils/rmmod.c
index dd293523d..f5d7d359a 100644
--- a/modutils/rmmod.c
+++ b/modutils/rmmod.c
@@ -34,7 +34,7 @@ _syscall1(int, delete_module, const char *, name)
extern int rmmod_main(int argc, char **argv)
{
- int ret = TRUE;
+ int ret = EXIT_SUCCESS;
if (argc <= 1) {
usage(rmmod_usage);
}
@@ -47,9 +47,9 @@ extern int rmmod_main(int argc, char **argv)
/* Unload _all_ unused modules via NULL delete_module() call */
if (delete_module(NULL)) {
perror("rmmod");
- exit(FALSE);
+ return EXIT_FAILURE;
}
- exit(TRUE);
+ return EXIT_SUCCESS;
default:
usage(rmmod_usage);
}
@@ -59,7 +59,7 @@ extern int rmmod_main(int argc, char **argv)
while (argc-- > 0) {
if (delete_module(*argv) < 0) {
perror(*argv);
- ret=FALSE;
+ ret = EXIT_FAILURE;
}
argv++;
}