From ce93b1511fc5c12eeadc04492f2281838cb3aa7d Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 21 Nov 2013 16:25:51 +0100 Subject: use gp_strerror where strerror was used. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Günther Deschner --- proxy/src/gp_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'proxy/src/gp_config.c') diff --git a/proxy/src/gp_config.c b/proxy/src/gp_config.c index 63f264e..2fc4a6f 100644 --- a/proxy/src/gp_config.c +++ b/proxy/src/gp_config.c @@ -464,7 +464,7 @@ int load_config(struct gp_config *cfg) done: if (ret != 0) { - GPERROR("Error reading configuration %d: %s", ret, strerror(ret)); + GPERROR("Error reading configuration %d: %s", ret, gp_strerror(ret)); } gp_config_close(ctx); safefree(ctx); -- cgit