diff options
author | ivan <ivan> | 2011-02-27 03:27:08 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-02-27 03:27:08 +0000 |
commit | e508799ff74d8bbf26b7cab53a255fe2a374d0f4 (patch) | |
tree | 40da38a29ba44e7273108429c67f76f2d886d4da | |
parent | 88d8ee93b964e9c291be6e35e0c81c71e454d72a (diff) |
add start of torrus srvderive daemon, RT#10574
-rw-r--r-- | FS/bin/freeside-torrus-srvderive | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/bin/freeside-torrus-srvderive b/FS/bin/freeside-torrus-srvderive index 50dcb9238..6f949a2d5 100644 --- a/FS/bin/freeside-torrus-srvderive +++ b/FS/bin/freeside-torrus-srvderive @@ -39,8 +39,8 @@ my $other_date = concat_sql([ 'other.srv_date', "' '", 'other.srv_time' ]); $other_date = "CAST( $other_date AS TIMESTAMP )" if driver_name =~ /^Pg/i; $other_date = str2time_sql. $other_date. str2time_sql_closing; -my $in = concat_sql([ '?', "'_IN'" ) -my $out = concat_sql([ '?', "'_OUT'" ) +my $in = concat_sql([ '?', "'_IN'" ]); +my $out = concat_sql([ '?', "'_OUT'" ]); my $sql = " SELECT DISTINCT srv_date, srv_time FROM srvexport |