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