diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-01-29 13:13:00 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-01-29 13:13:00 +0000 |
commit | 4c9f6c5a31efc950389fba3474dea5b977a23152 (patch) | |
tree | 100140199d115199a8ddf8921c7e4762a953bdff /source3/script/findsmb.in | |
parent | cbe8213a620ab48bd956e4694f386aff3e4aa404 (diff) | |
download | samba-4c9f6c5a31efc950389fba3474dea5b977a23152.tar.gz samba-4c9f6c5a31efc950389fba3474dea5b977a23152.tar.bz2 samba-4c9f6c5a31efc950389fba3474dea5b977a23152.zip |
Fix to findsmb by Waider
(This used to be commit c32c1bccc27f10e2f44f3e7f3778aae38bba8f25)
Diffstat (limited to 'source3/script/findsmb.in')
-rwxr-xr-x | source3/script/findsmb.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/script/findsmb.in b/source3/script/findsmb.in index 5ca1d8082a..42c1dd706c 100755 --- a/source3/script/findsmb.in +++ b/source3/script/findsmb.in @@ -26,7 +26,7 @@ for ($i = 0; $i < 2; $i++) { # test for -d and -r options $_ = shift; if (m/-d|-D/) { $DEBUG = 1; - } else (m/-r/) { + } elsif (m/-r/) { $R_OPTION = "-r"; } } |