diff options
author | justdave%syndicomm.com <> | 2001-06-11 00:15:56 +0000 |
---|---|---|
committer | justdave%syndicomm.com <> | 2001-06-11 00:15:56 +0000 |
commit | 808408770704c74994a322632c334d248dbc189b (patch) | |
tree | 9beffbdb9b23f42540ad370279b0454ef0d62c79 /syncshadowdb | |
parent | Give a logical error message if no products are available to a user for bug e... (diff) | |
download | bugzilla-808408770704c74994a322632c334d248dbc189b.tar.gz bugzilla-808408770704c74994a322632c334d248dbc189b.tar.bz2 bugzilla-808408770704c74994a322632c334d248dbc189b.zip |
Re-fix for bug 21253: fix calling conventions for syncshadowdb so that a phony parameter to get past the multi-param system() test in tinderbox actually works.
r= tara
Diffstat (limited to 'syncshadowdb')
-rwxr-xr-x | syncshadowdb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/syncshadowdb b/syncshadowdb index 7dce87038..471b6d6ad 100755 --- a/syncshadowdb +++ b/syncshadowdb @@ -51,6 +51,9 @@ foreach my $opt (@ARGV) { } elsif ($opt eq '-syncall') { $syncall = 1; $verbose = 1; + } elsif ($opt eq '--') { + # do nothing - null parameter so we can use + # multi-param system() call in globals.pl } else { Usage(); } |