From a28e7b10833631338b48f406b8a464d66b4b1073 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Marchal?= Date: Tue, 11 May 2010 08:16:30 +0000 Subject: [PATCH] Allow only one graph type at a time for now --- getconf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.47.2