X-Git-Url: http://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Fppastats.c;h=9f6ddbe0a9c559f69300c415d571c53ef4991c8d;hb=1b5e970c9fa6bda525f8c8ab5d2ea001084c7db7;hp=38f6dd0a9c56d62c9538f778b97f7e2ef85f1112;hpb=9d8ca122223ad917f61d4f8f5e32f809b5926222;p=ppastats.git diff --git a/src/ppastats.c b/src/ppastats.c index 38f6dd0..9f6ddbe 100644 --- a/src/ppastats.c +++ b/src/ppastats.c @@ -1,27 +1,31 @@ /* - Copyright (C) 2011 jeanfi@gmail.com - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301 USA -*/ + * Copyright (C) 2011-2012 jeanfi@gmail.com + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + * 02110-1301 USA + */ + +#include +#define _(String) gettext(String) #include #include #include #include "list.h" +#include "log.h" #include "lp_ws.h" #include "ppastats.h" @@ -247,7 +251,7 @@ create_ppa_stats(const char *owner, free(ppa_url); if (!history) { - fprintf(stderr, "Failed to retrieve PPA information\n"); + log_err(_("Failed to retrieve PPA information")); exit(EXIT_FAILURE); } @@ -262,14 +266,14 @@ create_ppa_stats(const char *owner, h = *h_cur; totals = get_daily_download_totals(h->self_link); if (!totals) { - fprintf(stderr, "Failed to retrieve download totals" - " for %s\n", h->self_link); + log_err(_("Failed to retrieve download totals for %s"), + h->self_link); continue; } count = get_download_count(h->self_link); if (count == -1) { - fprintf(stderr, "Failed to retrieve download count" - " for %s\n", h->self_link); + log_err(_("Failed to retrieve download count for %s"), + h->self_link); count = 0; } pkg_name = h->binary_package_name;