summaryrefslogtreecommitdiff
path: root/databases/p5-DBD-Pg/files/patch-Pg.pm
diff options
context:
space:
mode:
Diffstat (limited to 'databases/p5-DBD-Pg/files/patch-Pg.pm')
-rw-r--r--databases/p5-DBD-Pg/files/patch-Pg.pm15
1 files changed, 0 insertions, 15 deletions
diff --git a/databases/p5-DBD-Pg/files/patch-Pg.pm b/databases/p5-DBD-Pg/files/patch-Pg.pm
deleted file mode 100644
index e8d7d4826674..000000000000
--- a/databases/p5-DBD-Pg/files/patch-Pg.pm
+++ /dev/null
@@ -1,15 +0,0 @@
---- Pg.pm.orig Thu Apr 19 13:39:06 2001
-+++ Pg.pm Thu Apr 19 13:40:13 2001
-@@ -82,8 +82,10 @@
- $user = "" unless defined($user);
- $auth = "" unless defined($auth);
-
-- $user = $ENV{DBI_USER} unless $user eq "";
-- $auth = $ENV{DBI_PASS} unless $auth eq "";
-+ $user ||= $ENV{DBI_USER};
-+ $auth ||= $ENV{DBI_PASS};
-+ $user ||= "";
-+ $auth ||= "";
-
- my($dbh) = DBI::_new_dbh($drh, {
- 'Name' => $Name,