2
0
Fork 0

memcached.c: fix wrong parameter (use real enum value)

personal/stbuehler/wip
Stefan Bühler 2010-07-18 20:30:06 +02:00
parent 0e4291d5dd
commit e10df4ed77
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ static void cancel_all_requests(liMemcachedCon *con) {
err = g_error_copy(err1);
}
if (req->req.callback) req->req.callback(&req->req, LI_MEMCACHED_ERROR, NULL, &err);
if (req->req.callback) req->req.callback(&req->req, LI_MEMCACHED_RESULT_ERROR, NULL, &err);
}
if (NULL != err) g_clear_error(&err);