X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Frrd_getopt1.c;h=4c406e9f9c711ff8dbbca746dd450cf4a95bebf1;hb=2f9c0721d1f7e9eceae3d04e197d0e4a46eeb3b1;hp=6ace7943cd546794225f2d57258879e086c84a73;hpb=2a6a270edfda89b04722b42b57992907f871c671;p=rrdtool.git diff --git a/src/rrd_getopt1.c b/src/rrd_getopt1.c index 6ace794..4c406e9 100644 --- a/src/rrd_getopt1.c +++ b/src/rrd_getopt1.c @@ -114,19 +114,19 @@ int main( { int c; int digit_optind = 0; + struct option long_options[] = { + {"add", 1, 0, 0}, + {"append", 0, 0, 0}, + {"delete", 1, 0, 0}, + {"verbose", 0, 0, 0}, + {"create", 0, 0, 0}, + {"file", 1, 0, 0}, + {0, 0, 0, 0} + }; while (1) { int this_option_optind = optind ? optind : 1; int option_index = 0; - static struct option long_options[] = { - {"add", 1, 0, 0}, - {"append", 0, 0, 0}, - {"delete", 1, 0, 0}, - {"verbose", 0, 0, 0}, - {"create", 0, 0, 0}, - {"file", 1, 0, 0}, - {0, 0, 0, 0} - }; c = getopt_long(argc, argv, "abc:d:0123456789", long_options, &option_index);