cvs commit: qpsmtpd/lib Qpsmtpd.pm
[email protected] (Matt Sergeant)
| Newsgroups | perl.cvs.qpsmtpd |
|---|---|
| Message-ID | <[email protected]> |
cvsuser 03/07/24 05:43:46
Modified: lib Qpsmtpd.pm
Log:
Fixed defaults bug (freeside)
Revision Changes Path
1.25 +1 -1 qpsmtpd/lib/Qpsmtpd.pm
Index: Qpsmtpd.pm
===================================================================
RCS file: /cvs/public/qpsmtpd/lib/Qpsmtpd.pm,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -w -r1.24 -r1.25
--- Qpsmtpd.pm 8 Jul 2003 03:10:48 -0000 1.24
+++ Qpsmtpd.pm 24 Jul 2003 12:43:46 -0000 1.25
@@ -38,7 +38,7 @@
if (wantarray) {
@config = $self->get_qmail_config($c, $type) unless @config;
- @config = @{$defaults{$c}} if (!@config and $defaults{$c});
+ @config = $defaults{$c} if (!@config and $defaults{$c});
return @config;
}
else {