X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fcollectdctl.c;h=d019d2742f3db6bef5d98f653ed144cdf4a42895;hb=aedf67e69cbe93a6925fd1004a7c8b990aed4b0a;hp=0b8d0c1e89ee1547f955c0795bf388d1568eb518;hpb=21b429b6b5ecd2f9820d9a2516c12577a0e59d19;p=collectd.git diff --git a/src/collectdctl.c b/src/collectdctl.c index 0b8d0c1e..d019d274 100644 --- a/src/collectdctl.c +++ b/src/collectdctl.c @@ -98,8 +98,8 @@ static void exit_usage (const char *name, int status) { "Hostname defaults to the local hostname if omitted (e.g., uptime/uptime).\n" "No error is returned if the specified identifier does not exist.\n" - "\n"PACKAGE" "VERSION", http://collectd.org/\n" - "by Florian octo Forster \n" + "\n"PACKAGE_NAME" "PACKAGE_VERSION", http://collectd.org/\n" + "by Florian octo Forster \n" "for contributions see `AUTHORS'\n" , name); exit (status); @@ -551,14 +551,14 @@ int main (int argc, char **argv) { int status; while (42) { - int c; + int n; - c = getopt (argc, argv, "s:h"); + n = getopt (argc, argv, "s:h"); - if (c == -1) + if (n == -1) break; - switch (c) { + switch (n) { case 's': snprintf (address, sizeof (address), "unix:%s", optarg); address[sizeof (address) - 1] = '\0';