diff -pruN 3.6.3-1/debian/changelog 3.6.3-1ubuntu1/debian/changelog
--- 3.6.3-1/debian/changelog	2021-12-21 09:09:53.000000000 +0000
+++ 3.6.3-1ubuntu1/debian/changelog	2022-04-12 17:44:38.000000000 +0000
@@ -1,3 +1,16 @@
+pgloader (3.6.3-1ubuntu1) jammy; urgency=medium
+
+  * d/p/force-libcrypto-reload.patch: force reloading cl+ssl::libcrypto.
+    (LP: #1968594)
+
+ -- Athos Ribeiro <athos.ribeiro@canonical.com>  Tue, 12 Apr 2022 14:44:38 -0300
+
+pgloader (3.6.3-1build1) jammy; urgency=medium
+
+  * No changes rebuild for cl-plus-ssl fixes (LP: #1960615).
+
+ -- Athos Ribeiro <athos.ribeiro@canonical.com>  Mon, 11 Apr 2022 09:16:20 -0300
+
 pgloader (3.6.3-1) unstable; urgency=medium
 
   * New upstream version.
diff -pruN 3.6.3-1/debian/control 3.6.3-1ubuntu1/debian/control
--- 3.6.3-1/debian/control	2021-12-21 09:09:53.000000000 +0000
+++ 3.6.3-1ubuntu1/debian/control	2022-04-12 17:44:38.000000000 +0000
@@ -1,7 +1,8 @@
 Source: pgloader
 Section: database
 Priority: optional
-Maintainer: Dimitri Fontaine <dim@tapoueh.org>
+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
+XSBC-Original-Maintainer: Dimitri Fontaine <dim@tapoueh.org>
 Uploaders: Christoph Berg <myon@debian.org>
 Build-Depends:
  buildapp (>= 1.5),
diff -pruN 3.6.3-1/debian/patches/force-libcrypto-reload.patch 3.6.3-1ubuntu1/debian/patches/force-libcrypto-reload.patch
--- 3.6.3-1/debian/patches/force-libcrypto-reload.patch	1970-01-01 00:00:00.000000000 +0000
+++ 3.6.3-1ubuntu1/debian/patches/force-libcrypto-reload.patch	2022-04-12 17:44:38.000000000 +0000
@@ -0,0 +1,34 @@
+From 25e72cf986321d19f79db6b0046f642aded6ea7c Mon Sep 17 00:00:00 2001
+From: Athos Ribeiro <athos.ribeiro@canonical.com>
+Date: Tue, 12 Apr 2022 14:57:58 -0300
+Subject: [PATCH] Force libcrypto reload in src/hooks.lisp
+
+cl+ssl::libcrypto is also read at startup. If not properly closed in the
+hooks, together with libssl, libcrypto will be loaded at startup and if
+the first cl+ssl file alternative fails, the debugger is invoked.
+
+* Fixes #1370
+
+Bug: https://github.com/dimitri/pgloader/issues/1370
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/pgloader/+bug/1968594
+Forwarded: https://github.com/dimitri/pgloader/pull/1372
+Last-Update: 2022-04-12
+---
+ src/hooks.lisp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/hooks.lisp b/src/hooks.lisp
+index c8cf1bc..ccebfad 100644
+--- a/src/hooks.lisp
++++ b/src/hooks.lisp
+@@ -24,6 +24,7 @@
+   "Close Foreign libs in use by pgloader at application save time."
+   (let (#+sbcl (sb-ext:*muffled-warnings* 'style-warning))
+     (mapc #'cffi:close-foreign-library '(cl+ssl::libssl
++                                         cl+ssl::libcrypto
+                                          mssql::sybdb))))
+ 
+ (defun open-foreign-libs ()
+-- 
+2.34.1
+
diff -pruN 3.6.3-1/debian/patches/series 3.6.3-1ubuntu1/debian/patches/series
--- 3.6.3-1/debian/patches/series	2021-12-09 12:55:15.000000000 +0000
+++ 3.6.3-1ubuntu1/debian/patches/series	2022-04-12 17:44:38.000000000 +0000
@@ -1 +1,2 @@
 #bionic-theme-options
+force-libcrypto-reload.patch
