diff options
author | Simo Sorce <simo@redhat.com> | 2013-11-21 12:14:36 -0500 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2013-11-21 12:14:36 -0500 |
commit | 3209aacd6a5a0b375ce8b9ae28e70503d61810ec (patch) | |
tree | 98561c070258984caa8d0921088d1b2f35d4dbd8 /proxy/src/gp_config.c | |
parent | 1c4bcda3d1d468f8ad47341f6562f31bb8f51a9d (diff) | |
download | gss-proxy-strerror.tar.gz gss-proxy-strerror.tar.xz gss-proxy-strerror.zip |
Use gp_strerror() everywhere instead of strerror()strerror
Diffstat (limited to 'proxy/src/gp_config.c')
-rw-r--r-- | proxy/src/gp_config.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |