diff options
author | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-12-05 04:21:13 +0000 |
---|---|---|
committer | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-12-05 04:21:13 +0000 |
commit | a4183b2fdd19d83c7705c423623c117c4118860f (patch) | |
tree | deea607f3e64d2f73156138f7bee96e234c32598 /utils | |
parent | 6eb1b88d9ac9fde4efca4668b99d9628f0a9cd10 (diff) |
Converting 2-arg open to 3-arg open
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@719 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'utils')
-rw-r--r-- | utils/notify_short/listener.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/notify_short/listener.pl b/utils/notify_short/listener.pl index 37f31d38..dae23d0a 100644 --- a/utils/notify_short/listener.pl +++ b/utils/notify_short/listener.pl @@ -30,7 +30,7 @@ while (1){ # loop infinitely sleep $cycle_delay; } sub on_notify { - open (MAIL, "| $sendmail"); + open (MAIL, "|-", $sendmail); $sth = $dbh->prepare(" SELECT partnumber, description, onhand, rop FROM parts WHERE onhand <= rop |