Code

Changed return type of `plugin_exists' from `bool' to `int' since `bool' appears...
authorocto <octo>
Tue, 13 Dec 2005 21:53:55 +0000 (21:53 +0000)
committerocto <octo>
Tue, 13 Dec 2005 21:53:55 +0000 (21:53 +0000)
src/plugin.c
src/plugin.h

index a249cf7688b5f7b8c375cf0e34118e6642724b2a..9bc02abec50fff8f1ceb9a5437e4eaff9f7951da 100644 (file)
@@ -77,12 +77,12 @@ plugin_t *plugin_search (char *type)
  * Returns true if the plugin is loaded (i.e. `exists') and false otherwise.
  * This is used in `configfile.c' to skip sections that are not needed..
  */
-bool plugin_exists (char *type)
+int plugin_exists (char *type)
 {
        if (plugin_search (type) == NULL)
-               return (false);
+               return (0);
        else
-               return (true);
+               return (1);
 }
 
 /*
index e14376e599eca2d1609a89f324068853615513b3..8dd56ae31a1f6202fd6a082641454e04e32801e6 100644 (file)
@@ -27,7 +27,7 @@ int  plugin_load_all (char *dir);
 void plugin_init_all (void);
 void plugin_read_all (void);
 
-bool plugin_exists (char *type);
+int plugin_exists (char *type);
 void plugin_register (char *type,
                void (*init) (void),
                void (*read) (void),