The 'set' command now allows the value to contain spaces

git-svn-id: file:///home/svn/incoming/trunk@3572 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2006-03-19 18:39:43 +00:00
parent a6726c8df7
commit e7a6f2b4b3
1 changed files with 1 additions and 1 deletions

View File

@ -662,7 +662,7 @@ class Core
# Set the supplied name to the supplied value
name = args[0]
value = args[1]
value = args[1, args.length-1].join(' ')
# If the driver indicates that the value is not valid, bust out.
if (driver.on_variable_set(global, name, value) == false)