diff options
author | Steve French <sfrench@samba.org> | 2007-02-11 19:28:52 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:17:54 -0500 |
commit | abb131ec95e5ba326b75e26f990cf4a340286b02 (patch) | |
tree | 044e4b837a3b2f6992f6ea0bc938b28e7801b22a /source3/client/cifs_resolver.sh | |
parent | 8a96fe6a59f0d94f55a584b3c0d052130865e533 (diff) | |
download | samba-abb131ec95e5ba326b75e26f990cf4a340286b02.tar.gz samba-abb131ec95e5ba326b75e26f990cf4a340286b02.tar.bz2 samba-abb131ec95e5ba326b75e26f990cf4a340286b02.zip |
r21283: Do not display away debug output of cifs dfs resolver by default
per Dave Howell's suggestion
(This used to be commit 529d64b4c862bee051e13a87e521d919c6dd84f5)
Diffstat (limited to 'source3/client/cifs_resolver.sh')
-rw-r--r-- | source3/client/cifs_resolver.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/client/cifs_resolver.sh b/source3/client/cifs_resolver.sh index aaf28a50c9..2229d5a5f5 100644 --- a/source3/client/cifs_resolver.sh +++ b/source3/client/cifs_resolver.sh @@ -46,6 +46,6 @@ status=0 echo "cifs_resolver: resolved: $2 to $DATAA" keyctl instantiate $1 "$DATAA" $3 || exit 1 fi - -} >&/dev/ttyS0 -exit $status +# if you want to debug the upcall, replace /dev/null (below) with ttyS0 or file +} >&/dev/null +exit 0 |