aboutsummaryrefslogtreecommitdiff
path: root/modutils/modprobe.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-05-28 15:57:31 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-05-28 15:57:31 +0000
commitdb508e3b8223c4235318a4022c5f22da0fdd4fac (patch)
tree08e6fa2b4edf1236e5767c7981ce139711ff02b4 /modutils/modprobe.c
parentcd9d4c85a41e0efe7af615f9a8009af9ceee25d9 (diff)
downloadbusybox-db508e3b8223c4235318a4022c5f22da0fdd4fac.tar.gz
- fix overflow; improve documentation while at it
Diffstat (limited to 'modutils/modprobe.c')
-rw-r--r--modutils/modprobe.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/modutils/modprobe.c b/modutils/modprobe.c
index 3a89d9814..afb4b3e93 100644
--- a/modutils/modprobe.c
+++ b/modutils/modprobe.c
@@ -24,18 +24,18 @@ struct mod_opt_t { /* one-way list of options to pass to a module */
struct dep_t { /* one-way list of dependency rules */
/* a dependency rule */
- char * m_name; /* the module name*/
- char * m_path; /* the module file path */
- struct mod_opt_t * m_options; /* the module options */
+ char * m_name; /* the module name*/
+ char * m_path; /* the module file path */
+ struct mod_opt_t * m_options; /* the module options */
- int m_isalias : 1; /* the module is an alias */
- int m_isblacklisted : 1;
- int m_reserved : 14; /* stuffin' */
+ unsigned int m_isalias :1; /* the module is an alias */
+ unsigned int m_isblacklisted:1; /* the module is blacklisted */
+ unsigned int m_reserved :14; /* stuffin' */
- int m_depcnt : 16; /* the number of dependable module(s) */
- char ** m_deparr; /* the list of dependable module(s) */
+ unsigned int m_depcnt :16; /* the number of dependable module(s) */
+ char ** m_deparr; /* the list of dependable module(s) */
- struct dep_t * m_next; /* the next dependency rule */
+ struct dep_t * m_next; /* the next dependency rule */
};
struct mod_list_t { /* two-way list of modules to process */