]> git.entuzijast.net Git - freeradius-dialup-admin.git/commitdiff
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)
Changelog
bin/log_badlogins

index 1b9f15b8d049b5b0aa12169e13a4504fb5216a1f..8db4b8edf47ea07809665f0a2fdc03bc6c390968 100644 (file)
--- 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
index 99d3fb510e2921efc3df67d8a03c99fe0d6c7f09..bb6c2a96985b9297df193f4866e18ef959c1d440 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;