changeset 468:14fbe4fcec25

Small correction to strSplit
author Adam Domurad <adomurad@redhat.com>
date Tue, 24 Jul 2012 10:35:11 -0400
parents b1b5b91b9830
children 55911b39b5c0
files ChangeLog plugin/icedteanp/IcedTeaPluginUtils.cc
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Tue Jul 24 10:34:08 2012 -0400
+++ b/ChangeLog	Tue Jul 24 10:35:11 2012 -0400
@@ -1,3 +1,9 @@
+2012-07-24  Adam Domurad  <adomurad@redhat.com>
+
+	* plugin/icedteanp/IcedTeaPluginUtils.cc
+	(IcedTeaPluginUtilities::strSplit): Replace usage of " " with proper 
+	delimiter
+
 2012-07-24  Adam Domurad  <adomurad@redhat.com>
 
 	Refactor JNLPFile#launchType into its own interface type (as opposed to
--- a/plugin/icedteanp/IcedTeaPluginUtils.cc	Tue Jul 24 10:34:08 2012 -0400
+++ b/plugin/icedteanp/IcedTeaPluginUtils.cc	Tue Jul 24 10:35:11 2012 -0400
@@ -311,7 +311,7 @@
 	    std::string* s = new std::string();
 	    s->append(tok_ptr);
 	    v->push_back(s);
-	    tok_ptr = strtok (NULL, " ");
+	    tok_ptr = strtok (NULL, delim);
 	}
         free(copy);