diff options
author | Linus Nordberg <linus@nordu.net> | 2010-10-05 22:06:01 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2010-10-05 22:06:01 +0200 |
commit | bf4047ef3d533e819240c2a00ff9bd65e0beba2e (patch) | |
tree | dbc496b3efb6ea84a334567ad02f2abf99dd18cf /lib/conf.c | |
parent | cf66600857caeee4cfa3eed208dc3f5cc774945c (diff) |
Rename struct rs_handle --> rs_context.
Diffstat (limited to 'lib/conf.c')
-rw-r--r-- | lib/conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,7 +18,7 @@ #endif int -rs_context_read_config(struct rs_handle *ctx, const char *config_file) +rs_context_read_config(struct rs_context *ctx, const char *config_file) { #warning "Missing some error handling in rs_context_config_read()" cfg_opt_t server_opts[] = @@ -94,7 +94,7 @@ rs_context_read_config(struct rs_handle *ctx, const char *config_file) } struct rs_realm -*rs_conf_find_realm(struct rs_handle *ctx, const char *name) +*rs_conf_find_realm(struct rs_context *ctx, const char *name) { struct rs_realm *r; |