This email list is read-only.  Emails sent to this list will be discarded
----------------------------------
 plugins/wifi.c |   13 +++----------
 1 files changed, 3 insertions(+), 10 deletions(-)

New commits:
commit 78def9a9658469d9b666c53b901a70b3fd3c209e
Author: Marcel Holtmann <[email protected]>
Date:   Sat Dec 13 01:58:07 2008 +0100

    Fix broken invalid character replacement code


Diff in this email is a maximum of 400 lines.
diff --git a/plugins/wifi.c b/plugins/wifi.c
index e463589..533b035 100644
--- a/plugins/wifi.c
+++ b/plugins/wifi.c
@@ -254,17 +254,10 @@ static void scan_result(struct connman_element *parent,
        temp = g_strdup(network->identifier);
 
        for (i = 0; i < strlen(temp); i++) {
-               if (temp[i] == ' ' || temp[i] == '.')
-                       temp[i] = '_';
-               else if (temp[i] == '-' || temp[i] == '+')
-                       temp[i] = '_';
-               else if (temp[i] == '!' || temp[i] == '?')
-                       temp[i] = '_';
-               else if (temp[i] == '(' || temp[i] == ')')
-                       temp[i] = '_';
-               else if (g_ascii_isprint(temp[i]) == FALSE)
+               gchar tmp = g_ascii_tolower(temp[i]);
+
+               if (tmp < 'a' || tmp > 'z')
                        temp[i] = '_';
-               temp[i] = g_ascii_tolower(temp[i]);
        }
 
        element = find_pending_element(data, network->identifier);
_______________________________________________
Commits mailing list
[email protected]
https://lists.moblin.org/mailman/listinfo/commits

Reply via email to