usttrace: allow spaces in command-line arguments
authorStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Wed, 16 Nov 2011 12:17:21 +0000 (07:17 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 16 Nov 2011 12:17:21 +0000 (07:17 -0500)
commitf3c6d9046c03c71b2028c88a9444519299b7b4c2
tree64e992af5aa89984b1ea3b74b5e1888b77eaf927
parentc8afcc1a6acebbc2137ab4a9b9d347d8d10278c6
usttrace: allow spaces in command-line arguments

The usttrace uses $*, which expands arguments without preserving their
boundaries.  This causes arguments that include spaces to be mangled:

[0] "echo"
[1] "hello world"

becomes:

[0] "echo"
[1] "hello"
[2] "world"

Use "$@" instead so that argument boundaries are preserved.

Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
usttrace
This page took 0.023347 seconds and 4 git commands to generate.