summaryrefslogtreecommitdiff
path: root/examples/printing
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2004-05-20 13:40:16 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:51:38 -0500
commit96c6bf93d52c562dfabe25a2901ecb4e54f5a06f (patch)
treeb8b52435b1531fbf804631a1f127d3087b7d0b39 /examples/printing
parent0f5e40b14ee619725507eb466d3a8d6fd893a143 (diff)
downloadsamba-96c6bf93d52c562dfabe25a2901ecb4e54f5a06f.tar.gz
r795: paranoia checks
(This used to be commit c087c51535982bd9db11e78db4064468f3507808)
Diffstat (limited to 'examples/printing')
-rwxr-xr-xexamples/printing/smbprint6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/printing/smbprint b/examples/printing/smbprint
index e2bbdc2f16e..3d4b53f850a 100755
--- a/examples/printing/smbprint
+++ b/examples/printing/smbprint
@@ -124,6 +124,12 @@ if [ ! -O $logdir ]; then
debug=""
fi
+touch $debugfile
+if [ -h $debugfile ]; then
+ echo "$debugful is a symlink. Turning off debugging!"
+ debug=""
+fi
+
##
## We should be safe at this point to create the log file
## without fear of a symlink attack -- move on to more script work.