From 35292596d8d57f76a6118127d7f3c71c6141170b Mon Sep 17 00:00:00 2001 From: Richard Sharpe Date: Sat, 5 Apr 2003 19:41:33 +0000 Subject: [PATCH] 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) --- source3/autogen.sh | 8 ++++---- source3/libsmb/libsmbclient.c | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/source3/autogen.sh b/source3/autogen.sh index 869f1d2f5e5..32dfd9f72a5 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 c04736d8f59..a0223568f1f 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); -- 2.11.4.GIT