diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-01-29 13:14:18 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-01-29 13:14:18 +0000 |
commit | 6789cc3de6b775a744d3cd31ae30cc93487e5474 (patch) | |
tree | 1fa6831d57840f7396d63c1c6d89a62af05dd815 /source3/script | |
parent | ef49ed3e06bdb6cac7cadd348442f98085afac54 (diff) | |
download | samba-6789cc3de6b775a744d3cd31ae30cc93487e5474.tar.gz samba-6789cc3de6b775a744d3cd31ae30cc93487e5474.tar.bz2 samba-6789cc3de6b775a744d3cd31ae30cc93487e5474.zip |
Merge from HEAD - fix to findsmb by Waider
(This used to be commit 28258224ded31e9a0a4304170ce98534ddfa0dfa)
Diffstat (limited to 'source3/script')
-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"; } } |