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:
committed by
Bjoern Jacke
parent
8c365d5d4d
commit
9329d0a91e
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user