Commit a3a6b03c authored by Steve Holme's avatar Steve Holme
Browse files

tool_cfgable: For consistency renamed init_config() to config_init()

parent 3b929b6a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@

#include "memdebug.h" /* keep this as LAST include */

void init_config(struct Configurable* config)
void config_init(struct Configurable* config)
{
  memset(config, 0, sizeof(struct Configurable));

+1 −1
Original line number Diff line number Diff line
@@ -216,7 +216,7 @@ struct Configurable {
  char *xoauth2_bearer;     /* XOAUTH2 bearer token */
}; /* struct Configurable */

void init_config(struct Configurable* config);
void config_init(struct Configurable* config);
void config_free(struct Configurable* config);

#endif /* HEADER_CURL_TOOL_CFGABLE_H */
+1 −1
Original line number Diff line number Diff line
@@ -178,7 +178,7 @@ int main(int argc, char *argv[])

  if(config) {
    /* Initialise the config */
    init_config(config);
    config_init(config);

    /* Initialize the curl library - do not call any libcurl functions before
       this point */