From: kkalev Date: Tue, 26 Nov 2002 17:37:39 +0000 (+0000) Subject: Replace single quotes with double quotes in log_badlogins X-Git-Url: https://git.entuzijast.net/?a=commitdiff_plain;h=239274a76989322c577aff4875f94330daf98734;p=freeradius-dialup-admin.git Replace single quotes with double quotes in log_badlogins --- diff --git a/Changelog b/Changelog index 1b9f15b..8db4b8e 100644 --- a/Changelog +++ b/Changelog @@ -14,6 +14,7 @@ Ver 1.62: * Remember a few things in the user_test page. Also add another configuration file directive general_radius_server_auth_proto specifying the default authentication protocol of the radius server (pap or chap). +* Replace single quotes with double quotes in log_badlogins Ver 1.61: * Add a string encoder for greek * If general_decode_normal_attributes is set then encode attributes in lib/ldap/change_info. In the near future diff --git a/bin/log_badlogins b/bin/log_badlogins index 99d3fb5..bb6c2a9 100755 --- a/bin/log_badlogins +++ b/bin/log_badlogins @@ -100,7 +100,7 @@ for(;;){ $user =~s/[^\w\-\.]//g; $nas =~s/[^\w\.]//g; if ($nas ne 'localhost' && $nas !~ /\.$domain$/){ - $nas .= '.$domain'; + $nas .= ".$domain"; } $port =~s/[^\d]//g; $caller =~s/[^\d]//g;