summaryrefslogtreecommitdiff
path: root/mwc.pl
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2006-12-05 03:32:14 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2006-12-05 03:32:14 +0000
commit1264e2d8d2c9f1f460fc7071b53cd3d893f3a1ce (patch)
treedfb77f35b13e28bbe3dc10f26ca48b9cde8f984b /mwc.pl
parent457163e0c070883fb47df688618b97e7990e1169 (diff)
downloadMPC-1264e2d8d2c9f1f460fc7071b53cd3d893f3a1ce.tar.gz
ChangeLogTag: Tue Dec 5 03:29:14 UTC 2006 Chad Elliott <elliott_c@ociweb.com>
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));