X-Git-Url: http://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Fmain.c;h=4c8444438e2d355dbc3990de104bff33c4a366d9;hb=d79b9626414f0543612545c498c560108a388e9b;hp=cc7f62503c343b26e28c234da8e431c12cd88f52;hpb=677d2bfc3beae998b73f48a4be3036f09d6848ff;p=ppastats.git diff --git a/src/main.c b/src/main.c index cc7f625..4c84444 100644 --- a/src/main.c +++ b/src/main.c @@ -25,14 +25,15 @@ #include #include -#include "cache.h" +#include +#include #include -#include "html.h" -#include "http.h" -#include "lp_ws.h" -#include "config.h" +#include +#include +#include +#include #include -#include "ppastats.h" +#include static const char *program_name; @@ -130,7 +131,7 @@ static void print_help() puts(""); puts(_(" -o, --output-dir=[PATH] generates HTML pages into 'PATH'")); - puts(_(" -t, --theme-dir=[PATH] set theme dir to 'PATH'")); + puts(_(" -t, --theme-dir=[PATH] set theme dir to 'PATH'")); puts(_( " -s, --status=[STATUS] retrieves only package of the given status\n" @@ -151,7 +152,7 @@ static void print_help() int main(int argc, char **argv) { - char *owner, *ppa, *package_status, *output_dir, *theme_dir; + char *owner, *ppa, *package_status, *output_dir, *theme_dir, *log, *tmp; int optc, output_html, cmdok, install_static_files, ws_size, opti; program_name = argv[0]; @@ -212,7 +213,11 @@ int main(int argc, char **argv) exit(EXIT_FAILURE); } - log_open("ppastats.log"); + tmp = path_append(getenv("HOME"), ".ppastats"); + log = path_append(tmp, "ppastats.log"); + log_open(log); + free(tmp); + free(log); owner = argv[optind]; ppa = argv[optind+1];