summaryrefslogtreecommitdiff
path: root/pos.conf.pl
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2006-10-25 03:55:53 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2006-10-25 03:55:53 +0000
commitd257dc368e8d02f84b69c10a838a720b24c54c89 (patch)
tree8bd095836ad4a6fd1f959affbacfeac495467688 /pos.conf.pl
parent781260612b74f88f8a288f37db17e3dfa74fe94c (diff)
fixed parse errors
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@297 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'pos.conf.pl')
-rw-r--r--pos.conf.pl5
1 files changed, 2 insertions, 3 deletions
diff --git a/pos.conf.pl b/pos.conf.pl
index f6190adb..64827f6f 100644
--- a/pos.conf.pl
+++ b/pos.conf.pl
@@ -1,4 +1,4 @@
-
+use LedgerSMB::Sysconfig;
# This sets up the settings for the POS hardware. You can use it to override
# printing commands etc. as well.
@@ -93,7 +93,6 @@ $form->{pos_sources} = \%pos_sources;
# Due to the architecture of SL, we need to use netcat to print.
# Otherwise the document gets spooled twice and this interferes with timeliness.
-%{LedgerSMB::Sysconfig::printer}{'Printer'} = "utils/pos/directnet.pl $pos_config{rp_host} $pos_config{rp_proto} $pos_config{rp_port}"
-);
+${LedgerSMB::Sysconfig::printer}{'Printer'} = "utils/pos/directnet.pl $pos_config{rp_host} $pos_config{rp_proto} $pos_config{rp_port}";
1;