~jan-kneschke/mysql-proxy/packet-tracking-assertions

« back to all changes in this revision

Viewing changes to src/chassis-keyfile.c

  • Committer: jan at mysql
  • Date: 2010-05-27 14:19:43 UTC
  • Revision ID: jan@mysql.com-20100527141943-inwv2cohofexa2pb
added entry about #49716 - literals starting with digits

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
                        arg_string_array = g_key_file_get_string_list(keyfile, ini_group_name, entry->long_name, &len, &gerr);
63
63
                        if (!gerr) {
64
64
                                for (j = 0; arg_string_array[j]; j++) {
65
 
                                        arg_string_array[j] = g_strstrip(arg_string_array[j]);
 
65
                                        g_strchomp(arg_string_array[j]);
66
66
                                }       
67
67
                                *(gchar ***)(entry->arg_data) = arg_string_array;
68
68
                        }