aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/c/request.c
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2010-12-12 10:35:04 -0500
committerGravatar Adam Chlipala <adam@chlipala.net>2010-12-12 10:35:04 -0500
commit805a3eda8adf0482ea539dadc7e6c745056a04a8 (patch)
treeb4550f39a7cc32d63262a50f23a46f4d4a76b72e /src/c/request.c
parent6cd100d1ca2603d57ffd6a05763ca2de18554a97 (diff)
Change Basis.debug to use the protocol's debug function
Diffstat (limited to 'src/c/request.c')
-rw-r--r--src/c/request.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c/request.c b/src/c/request.c
index ae46326d..bcfec5e9 100644
--- a/src/c/request.c
+++ b/src/c/request.c
@@ -35,7 +35,7 @@ static int try_rollback(uw_context ctx, int will_retry, void *logger_data, uw_lo
}
uw_context uw_request_new_context(uw_app *app, void *logger_data, uw_logger log_error, uw_logger log_debug) {
- uw_context ctx = uw_init();
+ uw_context ctx = uw_init(logger_data, log_debug);
int retries_left = MAX_RETRIES;
uw_set_app(ctx, app);