From 99844dec190344e1cc01284fe899ae645d45f4f4 Mon Sep 17 00:00:00 2001 From: Dominik Meyer Date: Tue, 26 Dec 2023 16:58:52 +0100 Subject: [PATCH] FIX: fixed variable name --- plugins/rcpt_mysql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/rcpt_mysql b/plugins/rcpt_mysql index e6bd9ef..912ac81 100644 --- a/plugins/rcpt_mysql +++ b/plugins/rcpt_mysql @@ -38,7 +38,7 @@ sub createDSN my $dsn = "DBI:MariaDB:database=" . $self->{database} . ";host=" . $self->{host} . ";port=" . $self->{port}; $self->{dsn} = $dsn; - $self->log(LOGDEBUG, "created DSN " . $self->{DSN}); + $self->log(LOGDEBUG, "created DSN " . $self->{dsn}); } sub createQuery