diff options
author | Scott Ullrich <sullrich@gmail.com> | 2012-04-14 12:20:30 -0700 |
---|---|---|
committer | Scott Ullrich <sullrich@gmail.com> | 2012-04-14 12:20:30 -0700 |
commit | eb25c881dd72695e67aad404fd9d0ae60c945fc1 (patch) | |
tree | 050927d3d155223f371ceb6291ae74688ab98c17 | |
parent | 64a8dbf264239254bb6a690670362367339c5d27 (diff) | |
parent | 239a2977429aad32fbf139aca048c5b71a5b790f (diff) | |
download | pfsense-eb25c881dd72695e67aad404fd9d0ae60c945fc1.zip pfsense-eb25c881dd72695e67aad404fd9d0ae60c945fc1.tar.gz |
Merge pull request #91 from bcyrill/patch-5
Use appropriate syslog priorities.
-rwxr-xr-x | etc/inc/openvpn.auth-user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/openvpn.auth-user.php b/etc/inc/openvpn.auth-user.php index d36b5ff..0558dbb 100755 --- a/etc/inc/openvpn.auth-user.php +++ b/etc/inc/openvpn.auth-user.php @@ -118,7 +118,7 @@ if ($authenticated == false) { exit(-1); } -syslog(LOG_WARNING, "user {$username} authenticated\n"); +syslog(LOG_NOTICE, "user {$username} authenticated\n"); exit(0); |