diff options
author | Gisle Aas <gisle@activestate.com> | 2005-12-06 16:42:31 +0000 |
---|---|---|
committer | Gisle Aas <gisle@activestate.com> | 2005-12-06 16:42:31 +0000 |
commit | 29d14c727b109ef9b5e0b911814371d62839c7ba (patch) | |
tree | 0affd41fbcc14da1c280ab9d2f0227af1160cc6d /ext/Sys/Syslog | |
parent | 5007285b4ad480761ce05fed37258cf3eb92285d (diff) | |
download | perl-29d14c727b109ef9b5e0b911814371d62839c7ba.tar.gz |
Fix typo spotted by Ronald J Kimball.
p4raw-id: //depot/perl@26279
Diffstat (limited to 'ext/Sys/Syslog')
-rw-r--r-- | ext/Sys/Syslog/Syslog.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Sys/Syslog/Syslog.pm b/ext/Sys/Syslog/Syslog.pm index d275c0e2aa..29bf04c4c1 100644 --- a/ext/Sys/Syslog/Syslog.pm +++ b/ext/Sys/Syslog/Syslog.pm @@ -79,7 +79,7 @@ that ends in a ":". Note that Sys::Syslog version v0.07 and older passed the $message as the formatting string to sprintf() even when no formatting arguments -where provided. If the code calling syslog() might execute with older +were provided. If the code calling syslog() might execute with older versions of this module, make sure to call the function as syslog($priority, "%s", $message) instead of syslog($priority, $message). This protects against hostile formatting sequences that |