1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-07 09:49:30 +03:00

smbprinting: fix wrong == in shell tests

This commit is contained in:
Björn Jacke
2010-12-02 10:16:38 +01:00
committed by Bjoern Jacke
parent 8c365d5d4d
commit 9329d0a91e

View File

@ -81,7 +81,7 @@ if [ "x$password" = "x" ] ; then
password="-N"
fi
if [ "x$username" == "x" ] ; then
if [ "x$username" = "x" ] ; then
username="$server";
fi
@ -143,7 +143,7 @@ else
else
set -x; exec >>$debugfile 2>&1
debugargs="$debugfile."
#[ "x$debugsmb" == "x" ] || debugargs="$debugargs -d $debugsmb"
#[ "x$debugsmb" = "x" ] || debugargs="$debugargs -d $debugsmb"
fi
fi