summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-01-14 15:44:41 +0100
committerMichael Adam <obnox@samba.org>2008-01-14 15:46:01 +0100
commitdcb5034acd35d219106e1d855f4c4d36b3c8d83b (patch)
treee51c8b0f441dddac0ab11691041543ff41c5f82a /examples
parent54bdd22a07e885f896a8f784bc12096f65afac75 (diff)
downloadsamba-dcb5034acd35d219106e1d855f4c4d36b3c8d83b.tar.gz
Fix bug #5171 (perl syntax error) found by Jason Filley <jason@snakelegs.org>
Michael
Diffstat (limited to 'examples')
-rw-r--r--examples/logon/genlogon/genlogon.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/logon/genlogon/genlogon.pl b/examples/logon/genlogon/genlogon.pl
index 8ebf3921411..4799ac8452d 100644
--- a/examples/logon/genlogon/genlogon.pl
+++ b/examples/logon/genlogon/genlogon.pl
@@ -45,7 +45,7 @@ if ($ARGV[1] eq "SUPPORT" || $ARGV[0] eq "support")
}
# Connect shares just used by Administration staff
-If ($ARGV[1] eq "ADMIN" || $ARGV[0] eq "admin")
+if ($ARGV[1] eq "ADMIN" || $ARGV[0] eq "admin")
{
print LOGON "NET USE L: \\\\$ARGV[2]\\ADMIN\r\n";
print LOGON "NET USE K: \\\\$ARGV[2]\\MKTING\r\n";