From 2912f23f6cf7e223b34bb2c441b9c8da05afeb67 Mon Sep 17 00:00:00 2001 From: Bo Peng Date: Wed, 2 Dec 2020 09:20:38 +0900 Subject: [PATCH] Fix compiler error due to the previous commit. --- src/auth/pool_passwd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/pool_passwd.c b/src/auth/pool_passwd.c index fedac2a4f..97b1a4452 100644 --- a/src/auth/pool_passwd.c +++ b/src/auth/pool_passwd.c @@ -632,7 +632,7 @@ read_pool_key(char *key_file_path) if (fstat(fileno(fp), &stat_buf) != 0) { ereport(WARNING, - (errmsg("failed to stat pool key file") + (errmsg("failed to stat pool key file"), errdetail("fstat failed with reason: \"%m\""))); fclose(fp); return NULL; -- 2.39.5