blob: 7660cf270b8c5502fb30b5a40534b26c3b4f2003 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
$NetBSD: patch-aa,v 1.1.1.1 2000/10/21 18:57:04 rh Exp $
--- ISPMan.pm.orig Sat Sep 23 15:48:00 2000
+++ ISPMan.pm
@@ -1,4 +1,5 @@
package ISPMan;
+use AutoLoader 'AUTOLOAD';
use strict;
use Text::Template;
use ISPMan::IMAP;
@@ -30,7 +31,7 @@
my $self;
- my $confDir=shift || "/etc/ispman/conf";
+ my $confDir=shift || "/etc/ispman";
$Config=ISPMan::Config->new($confDir);
$self->{'Config'}=$Config;
|