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 | 28258224ded31e9a0a4304170ce98534ddfa0dfa (patch) | |
tree | cfcb60fc068ec9f9a4cc89d2dd638a4e23afdaa5 /source/script/findsmb.in | |
parent | e20cb9ca55e060e03d3f517f1d52ce2bc6982310 (diff) | |
download | samba-28258224ded31e9a0a4304170ce98534ddfa0dfa.tar.gz samba-28258224ded31e9a0a4304170ce98534ddfa0dfa.tar.xz samba-28258224ded31e9a0a4304170ce98534ddfa0dfa.zip |
Merge from HEAD - fix to findsmb by Waider
Diffstat (limited to 'source/script/findsmb.in')
-rwxr-xr-x | source/script/findsmb.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/script/findsmb.in b/source/script/findsmb.in index 5ca1d8082a5..42c1dd706c9 100755 --- a/source/script/findsmb.in +++ b/source/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"; } } |