]> sjero.net Git - wget/blobdiff - src/utils.c
[svn] Force thousand sep to . rather than " " when , is taken.
[wget] / src / utils.c
index fbf9b47f7ff26f04daa28048a7e0847314467871..6d095fa1c8fc743c793df1ee033fc27a440a52ae 100644 (file)
@@ -1191,11 +1191,11 @@ get_grouping_data (const char **sep, const char **grouping)
             grouping, which we still want to use it for legibility.
             In those locales set the sep char to ',', unless that
             character is used for decimal point, in which case set it
-            to " ".  */
+            to ".".  */
          if (*lconv->decimal_point != ',')
            cached_sep = ",";
          else
-           cached_sep = " ";
+           cached_sep = ".";
          cached_grouping = "\x03";
        }
       initialized = true;