summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@samba.org>2003-04-05 19:41:33 +0000
committerRichard Sharpe <sharpe@samba.org>2003-04-05 19:41:33 +0000
commit35292596d8d57f76a6118127d7f3c71c6141170b (patch)
tree29aa7bad47fe6d8011ecef85c7dd040c7ea293f4 /source3
parentedb56d184679d276d011af857f7d1ab0c6817f0a (diff)
downloadsamba-35292596d8d57f76a6118127d7f3c71c6141170b.tar.gz
samba-35292596d8d57f76a6118127d7f3c71c6141170b.tar.bz2
samba-35292596d8d57f76a6118127d7f3c71c6141170b.zip
Fix debug handling in libsmbclient.c.
Also, PLEASE, PLEASE, PLEASE, do not include bashism and Cisms in shell scripts. (This used to be commit 7f6367aac8c5440e1d4e97b26571b205140488ae)
Diffstat (limited to 'source3')
-rwxr-xr-xsource3/autogen.sh8
-rw-r--r--source3/libsmb/libsmbclient.c4
2 files changed, 6 insertions, 6 deletions
diff --git a/source3/autogen.sh b/source3/autogen.sh
index 869f1d2f5e..32dfd9f72a 100755
--- a/source3/autogen.sh
+++ b/source3/autogen.sh
@@ -1,4 +1,4 @@
-#! /bin/sh
+#!/bin/sh
# Run this script to build samba from CVS.
@@ -15,7 +15,7 @@ AUTOCONFFOUND="0"
## Look for autoheader
##
for i in $TESTAUTOHEADER; do
- if which $i >& /dev/null; then
+ if which $i > /dev/null; then
if [ `$i --version | head -1 | cut -d. -f 2` -ge 53 ]; then
AUTOHEADER=$i
AUTOHEADERFOUND="1"
@@ -29,7 +29,7 @@ done
##
for i in $TESTAUTOCONF; do
- if which $i >& /dev/null; then
+ if which $i > /dev/null; then
if [ `$i --version | head -1 | cut -d. -f 2` -ge 53 ]; then
AUTOCONF=$i
AUTOCONFFOUND="1"
@@ -42,7 +42,7 @@ done
##
## do we have it?
##
-if [ "$AUTOCONFFOUND" == "0" -o "$AUTOHEADERFOUND" == "0" ]; then
+if [ "$AUTOCONFFOUND" = "0" -o "$AUTOHEADERFOUND" = "0" ]; then
echo "$0: need autoconf 2.53 or later to build samba from CVS" >&2
exit 1
fi
diff --git a/source3/libsmb/libsmbclient.c b/source3/libsmb/libsmbclient.c
index c04736d8f5..a0223568f1 100644
--- a/source3/libsmb/libsmbclient.c
+++ b/source3/libsmb/libsmbclient.c
@@ -2670,8 +2670,8 @@ SMBCCTX * smbc_init_context(SMBCCTX * context)
if (!smbc_initialized) {
/* Do some library wide intialisations the first time we get called */
- /* Do we still need this ? */
- DEBUGLEVEL = 10;
+ /* Set this to what the user wants */
+ DEBUGLEVEL = context->debug;
setup_logging( "libsmbclient", True);