Skip to content

Commit

Permalink
Improve error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
pquerna committed Jan 24, 2010
1 parent 6967ac7 commit da31c58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/conf.c
Expand Up @@ -103,9 +103,9 @@ int ckl_conf_init(ckl_conf_t *conf)
fp = fopen(buf, "r");

if (fp == NULL) {
fprintf(stderr, "Unable to read configuration file.\n");
fprintf(stderr, "Unable to read configuration file: /etc/cloudkick.conf\n");
fprintf(stderr, "Please run cloudkick-config, or visit https://support.cloudkick.com/Ckl/Installation\n");
ckl_error_out("No configuration file available.");
ckl_error_out("Exiting: No configuration file available.");
return -1;
}
}
Expand Down

0 comments on commit da31c58

Please sign in to comment.