summaryrefslogtreecommitdiff
path: root/source3/script
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2006-10-05 21:30:31 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:15:13 -0500
commit06e36b4e1860927eb76a2e756d86ef9b525ac743 (patch)
treea4a9ee1d1444133117c93eed0124c38ea2ddbd4b /source3/script
parent05109131b0541f4e046cc6ad6130f1bbd7eb6a27 (diff)
downloadsamba-06e36b4e1860927eb76a2e756d86ef9b525ac743.tar.gz
samba-06e36b4e1860927eb76a2e756d86ef9b525ac743.tar.bz2
samba-06e36b4e1860927eb76a2e756d86ef9b525ac743.zip
r19104: Fix from Björn JACKE <bjoern@j3e.de>
"here's a small fix for gdb_backtrace." Jeremy. (This used to be commit a0b4e5d11857cd067c60dd99dc5f00ee62a1354d)
Diffstat (limited to 'source3/script')
-rwxr-xr-xsource3/script/tests/gdb_backtrace2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/tests/gdb_backtrace b/source3/script/tests/gdb_backtrace
index 2a5ed1f04d..c8fcad45f7 100755
--- a/source3/script/tests/gdb_backtrace
+++ b/source3/script/tests/gdb_backtrace
@@ -8,7 +8,7 @@ exec 1>&2
BASENAME=`basename $0`
test -z ${GDB_BIN} && GDB_BIN=`type -p gdb`
-if [ -z ${GDB_BIN} ]; then
+if [ -z "${GDB_BIN}" ]; then
echo "ERROR: ${BASENAME} needs an installed gdb. "
exit 1
fi