summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-11-02 11:10:38 -0800
committerIvan Kohler <ivan@freeside.biz>2014-11-02 11:10:38 -0800
commit8dfa2f14821acce6f5c89d447ba49b47339a3d36 (patch)
treed4497acf3ddee25daeea849566e204e808c3465f
parente3efeaeaa661d78fcbf0a257b929db15f7892495 (diff)
fix dates on aradial usage import, RT#29053
-rwxr-xr-xbin/aradial-sftp_and_import3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/aradial-sftp_and_import b/bin/aradial-sftp_and_import
index 0cb6bca3a..53357033c 100755
--- a/bin/aradial-sftp_and_import
+++ b/bin/aradial-sftp_and_import
@@ -169,6 +169,7 @@ foreach my $filename ( @$ls ) {
my @extra_values = ();
if ( $hash{'Status-Type'} eq 'Start' ) {
+ push @keys, 'AcctStartTime';
$dbhash{'AcctStartTime'} = $hash{'Date'};
$sql = 'INSERT INTO radacct ( '. join(',', @keys).
@@ -177,6 +178,8 @@ foreach my $filename ( @$ls ) {
} elsif ( $hash{'Status-Type'} eq 'Stop' ) {
my $AcctSessionId = delete($dbhash{AcctSessionId});
+
+ push @keys, 'AcctStopTime';
$dbhash{'AcctStopTime'} = $hash{'Date'};
push @extra_values, $AcctSessionId;