From: Stephen L Johnson Date: Mon, 17 Jun 2002 21:30:09 +0000 (+0000) Subject: fixed error with syslog() call, removed third param X-Git-Tag: spong-2_8_0-beta1~74 X-Git-Url: http://git.etc.gen.nz/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=af64bb4fb72fc58db6a73acb90cd84487bd6d4c2;p=spong.git fixed error with syslog() call, removed third param --- diff --git a/src/lib/Spong/Logger.pm b/src/lib/Spong/Logger.pm index c993ae8..3e7f9e3 100755 --- a/src/lib/Spong/Logger.pm +++ b/src/lib/Spong/Logger.pm @@ -79,7 +79,7 @@ sub log { if ($self->{syslog}) { openlog $self->{'ident'},$self->{'logopt'},$self->{'facility'}; - syslog $pri,$message,''; + syslog $pri,$message; closelog; }