# HG changeset patch # User Adam Domurad # Date 1343139897 14400 # Node ID 087d8407b2e12d84feec752a6235b0da31ce3bad # Parent ad4c1debd54f917f466ade7a97a3e8d1dd2bb945 Small correction to strSplit diff -r ad4c1debd54f -r 087d8407b2e1 ChangeLog --- a/ChangeLog Fri Jul 20 11:02:23 2012 -0400 +++ b/ChangeLog Tue Jul 24 10:24:57 2012 -0400 @@ -1,3 +1,9 @@ +2012-07-24 Adam Domurad + + * plugin/icedteanp/IcedTeaPluginUtils.cc + (IcedTeaPluginUtilities::strSplit): Replace usage of " " with proper + delimiter + 2012-07-18 Danesh Dadachanji Fix RH838417, Fix RH838559: Disambiguate signed applet security prompt diff -r ad4c1debd54f -r 087d8407b2e1 plugin/icedteanp/IcedTeaPluginUtils.cc --- a/plugin/icedteanp/IcedTeaPluginUtils.cc Fri Jul 20 11:02:23 2012 -0400 +++ b/plugin/icedteanp/IcedTeaPluginUtils.cc Tue Jul 24 10:24:57 2012 -0400 @@ -316,7 +316,7 @@ std::string* s = new std::string(); s->append(tok_ptr); v->push_back(s); - tok_ptr = strtok (NULL, " "); + tok_ptr = strtok (NULL, delim); } return v;