X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fconfigfile.h;h=8a34e7e96f31f6b3358a5ab5b0ae1584b033cf7e;hb=8d6491e0d382a69b3bdc3d4fb16d58ea20e008ea;hp=7d89fadbe18504ebc852f74a18da593e545ccfeb;hpb=0334d1bf754bf285668cdbc4243a972495f25dd7;p=collectd.git diff --git a/src/configfile.h b/src/configfile.h index 7d89fadb..8a34e7e9 100644 --- a/src/configfile.h +++ b/src/configfile.h @@ -63,17 +63,18 @@ void cf_register (char *type, /* * DESCRIPTION - * `cf_get_mode_option' returns options from the section(s). + * `cf_get_option' returns various general options. * * PARAMETERS * `key' Name of the option to query. + * `def' Pointer to return as default value. * * RETURN VALUE * The pointer returned is part of an internal structure and may not be * changed. If the option is not found for whatever reason (wrong key, option * not allowed for currently selected mode, ...) `NULL' is returned. */ -char *cf_get_mode_option (const char *key); +char *cf_get_option (const char *key, char *def); /* * DESCRIPTION @@ -82,8 +83,6 @@ char *cf_get_mode_option (const char *key); * to load specific plugins, depending on the current mode of operation. * * PARAMETERS - * `argc' Same as `argc' passed to `main' - * `argv' Same as `argv' passed to `main' * `filename' An additional filename to look for. This function calls * `lc_process' which already searches many standard locations.. * If set to NULL will use the `CONFIGFILE' define. @@ -92,6 +91,6 @@ char *cf_get_mode_option (const char *key); * Returns zero upon success and non-zero otherwise. A error-message will have * been printed in this case. */ -int cf_read (int argc, char **argv, char *filename); +int cf_read (char *filename); #endif /* defined(CONFIGFILE_H) */