From: Florian Forster Date: Tue, 24 Jun 2008 19:08:26 +0000 (+0200) Subject: src/rrd_update.c: Now remove the short options `-c' and `-n', too. X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=commitdiff_plain;h=b3d31f0e43261b99c5bfed82818cea971dd3017f src/rrd_update.c: Now remove the short options `-c' and `-n', too. Am I really that stupid? *argh* --- diff --git a/src/rrd_update.c b/src/rrd_update.c index e138cdb..2602a82 100644 --- a/src/rrd_update.c +++ b/src/rrd_update.c @@ -390,7 +390,7 @@ int rrd_update( opterr = 0; /* initialize getopt */ while (1) { - opt = getopt_long(argc, argv, "t:cnd:", long_options, &option_index); + opt = getopt_long(argc, argv, "t:d:", long_options, &option_index); if (opt == EOF) break;