From 21426b9a62d60c511a2a251289b0aa9693263be3 Mon Sep 17 00:00:00 2001 From: jeff Date: Thu, 17 Jun 2010 17:50:05 +0000 Subject: [PATCH] fix null option with placeholders --- FS/FS/svc_acct.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm index 562d424fd..022a6c731 100644 --- a/FS/FS/svc_acct.pm +++ b/FS/FS/svc_acct.pm @@ -2287,7 +2287,7 @@ sub set_usage { my $reset = 0; my %handyhash = (); if ( $options{null} ) { - %handyhash = ( map { ( $_ => 'NULL', $_."_threshold" => 'NULL' ) } + %handyhash = ( map { ( $_ => undef, $_."_threshold" => undef ) } qw( seconds upbytes downbytes totalbytes ) ); } -- 2.11.0