diff options
| author | Simo Sorce <simo@redhat.com> | 2013-04-14 23:30:50 -0400 |
|---|---|---|
| committer | Simo Sorce <simo@redhat.com> | 2013-04-23 12:02:59 -0700 |
| commit | fa612d764c7551188cd86c1b823d8ba67116943e (patch) | |
| tree | 371e17baef5f1ecb54fadca273441f63ab9ecfac /proxy/src/gp_config.c | |
| parent | d627d9195e043e3cb926292d87927a0a1cf03bee (diff) | |
| download | gss-proxy-fa612d764c7551188cd86c1b823d8ba67116943e.tar.gz gss-proxy-fa612d764c7551188cd86c1b823d8ba67116943e.tar.xz gss-proxy-fa612d764c7551188cd86c1b823d8ba67116943e.zip | |
Make config functions return actual error codes.
Signed-off-by: Simo Sorce <simo@redhat.com>
Reviewed-by: Günther Deschner <gdeschner@redhat.com>
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 8c4d3b7..d8f638b 100644 --- a/proxy/src/gp_config.c +++ b/proxy/src/gp_config.c @@ -435,7 +435,7 @@ int gp_config_get_string_array(struct gp_ini_context *ctx, int *num_values, char ***values) { - return NULL; + return ENOENT; } int gp_config_get_int(struct gp_ini_context *ctx, |
