From: Frédéric Marchal Date: Tue, 11 May 2010 08:16:30 +0000 (+0000) Subject: Allow only one graph type at a time for now X-Git-Tag: v2.3-pre2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a28e7b10833631338b48f406b8a464d66b4b1073;p=thirdparty%2Fsarg.git Allow only one graph type at a time for now --- diff --git a/getconf.c b/getconf.c index 86f3a19..c0d5e0d 100644 --- a/getconf.c +++ b/getconf.c @@ -138,8 +138,8 @@ static struct param_list displayvalue_values[]= static struct param_list datetime_values[]= { - {"elap",DATETIME_ELAP,0}, - {"bytes",DATETIME_BYTE,0}, + {"elap",DATETIME_ELAP,~DATETIME_ELAP}, + {"bytes",DATETIME_BYTE,~DATETIME_BYTE}, }; static int is_param(const char *param,const char *buf)