[OpenBIOS] r602 - trunk/openbios-devel/forth/debugging

svn at openbios.org svn at openbios.org
Tue Nov 10 22:34:21 CET 2009


Author: laurent
Date: 2009-11-10 21:34:21 +0000 (Tue, 10 Nov 2009)
New Revision: 602

Modified:
   trunk/openbios-devel/forth/debugging/client.fs
Log:
Correctly encode strings of bootpath and bootargs properties.

Signed-off-by: Laurent Vivier <Laurent at vivier.eu>


Modified: trunk/openbios-devel/forth/debugging/client.fs
===================================================================
--- trunk/openbios-devel/forth/debugging/client.fs	2009-11-09 19:39:26 UTC (rev 601)
+++ trunk/openbios-devel/forth/debugging/client.fs	2009-11-10 21:34:21 UTC (rev 602)
@@ -282,11 +282,11 @@
   ;
 
 : (encode-bootpath) ( "{params}<cr>" -- bootpath-str bootpath-len)
-  bl parse 2dup
+  bl parse 2dup encode-string
   " /chosen" (find-dev) if
     " bootpath" rot (property)
   then
-  linefeed parse
+  linefeed parse encode-string
   " /chosen" (find-dev) if
     " bootargs" rot (property)
   then




More information about the OpenBIOS mailing list