summaryrefslogtreecommitdiff
path: root/mwc.pl
diff options
context:
space:
mode:
Diffstat (limited to 'mwc.pl')
-rwxr-xr-xmwc.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/mwc.pl b/mwc.pl
index 330bf2b6..1fcfd350 100755
--- a/mwc.pl
+++ b/mwc.pl
@@ -26,7 +26,7 @@ if ($^O eq 'VMS') {
}
unshift(@INC, $basePath . '/modules');
-require MWC;
+require Driver;
# ************************************************************
# Subroutine Section
@@ -40,5 +40,5 @@ sub getBasePath {
# Main Section
# ************************************************************
-my($driver) = new MWC();
-exit($driver->execute($basePath, basename($0), \@ARGV));
+my($driver) = new Driver($basePath, basename($0));
+exit($driver->run(@ARGV));