Replace single quotes with double quotes in log_badlogins
authorkkalev <kkalev>
Tue, 26 Nov 2002 17:37:39 +0000 (17:37 +0000)
committerkkalev <kkalev>
Tue, 26 Nov 2002 17:37:39 +0000 (17:37 +0000)
dialup_admin/Changelog
dialup_admin/bin/log_badlogins

index 1b9f15b..8db4b8e 100644 (file)
@@ -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
index 99d3fb5..bb6c2a9 100755 (executable)
@@ -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;