Strip trailing space from pluginpref_list entries

This commit is contained in:
TingPing 2013-09-30 01:38:51 -04:00
parent b7e8f64bba
commit a831ecfd01
1 changed files with 1 additions and 1 deletions

View File

@ -2015,7 +2015,7 @@ hexchat_pluginpref_list (hexchat_plugin *pl, char* dest)
while (fscanf (fpIn, " %[^\n]", bufp) != EOF) /* read whole lines including whitespaces */
{
token = strtok (buffer, "=");
g_strlcat (dest, token, 4096); /* Dest must not be smaller than this */
g_strlcat (dest, g_strchomp (token), 4096); /* Dest must not be smaller than this */
g_strlcat (dest, ",", 4096);
}