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_dinglibs.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_dinglibs.c')
-rw-r--r-- | proxy/src/gp_config_dinglibs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proxy/src/gp_config_dinglibs.c b/proxy/src/gp_config_dinglibs.c index 8716b91..515b951 100644 --- a/proxy/src/gp_config_dinglibs.c +++ b/proxy/src/gp_config_dinglibs.c @@ -238,7 +238,7 @@ int gp_dinglibs_init(const char *config_file, &file_ctx); if (ret) { GPDEBUG("Failed to open config file: %d (%s)\n", - ret, strerror(ret)); + ret, gp_strerror(ret)); ini_config_destroy(ini_config); return ret; } @@ -255,7 +255,7 @@ int gp_dinglibs_init(const char *config_file, char **errors = NULL; /* we had a parsing failure */ GPDEBUG("Failed to parse config file: %d (%s)\n", - ret, strerror(ret)); + ret, gp_strerror(ret)); if (ini_config_error_count(ini_config)) { ini_config_get_errors(ini_config, &errors); if (errors) { |