Modify ↓
Opened at 2008-03-23T14:48:53Z
Closed at 2008-03-23T15:03:38Z
#380 closed defect (fixed)
wrong usage of g_strsplit
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | BitlBee | Version: | devel |
Keywords: | Cc: | ||
IRC client+version: | Client-independent | Operating System: | Linux |
OS version/distro: |
Description
When parsing the configuration, for account_storage_migrate, the function called is
conf->migrate_storage = g_strsplit( ini->value, " \t,;", -1 );
shouldn't it be g_strsplit_set ?
According to glib doc, g_strsplit will take the second argument as a whole for delimiter, I doubt this is what should be done. Here is a small patch.
Attachments (1)
Change History (2)
Changed at 2008-03-23T14:50:32Z by
Attachment: | bitlbee.fix380.diff added |
---|
comment:1 Changed at 2008-03-23T15:03:38Z by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Yeah, I think you're right, looks like I was sleeping while writing that. :-)
Note: See
TracTickets for help on using
tickets.
use the correct function for splitting