Signed-off-by: yixiangzhike <yixiangzhike007@163.com> (cherry picked from commit 4b3f7f878a69630f9243d3fe8f90099abba5a7a6)
28 lines
777 B
Diff
28 lines
777 B
Diff
From 92be047033d56c29473223c44985592b1290a701 Mon Sep 17 00:00:00 2001
|
|
From: Quanah Gibson-Mount <quanah@symas.com>
|
|
Date: Tue, 3 May 2022 16:31:37 +0000
|
|
Subject: [PATCH] Fix earlier #554 commit to use fetch_errno instead of
|
|
gdbm_errno
|
|
|
|
Signed-off-by: Quanah Gibson-Mount <quanah@symas.com>
|
|
---
|
|
sasldb/db_gdbm.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/sasldb/db_gdbm.c b/sasldb/db_gdbm.c
|
|
index 5f658ce2..59e8fd74 100644
|
|
--- a/sasldb/db_gdbm.c
|
|
+++ b/sasldb/db_gdbm.c
|
|
@@ -119,7 +119,7 @@ int _sasldb_getdata(const sasl_utils_t *utils,
|
|
} else {
|
|
utils->seterror(conn, 0,
|
|
"Couldn't fetch entry from %s: gdbm_errno=%d",
|
|
- path, gdbm_errno);
|
|
+ path, fetch_errno);
|
|
result = SASL_FAIL;
|
|
}
|
|
goto cleanup;
|
|
--
|
|
2.27.0
|
|
|