diff options
author | Christophe Jaillet <jailletc36@apache.org> | 2012-11-13 21:08:33 +0000 |
---|---|---|
committer | Christophe Jaillet <jailletc36@apache.org> | 2012-11-13 21:08:33 +0000 |
commit | 1070bb2265f132c9635dff75175d5cc350d5f5c5 (patch) | |
tree | 8d4103f84bbeec3c5e9dd5cd7a6b48df97263ac1 /modules/session | |
parent | b40d4dc8808aa07af296ea76e64091b8b3046f88 (diff) | |
download | httpd-1070bb2265f132c9635dff75175d5cc350d5f5c5.tar.gz |
formatting: space vs tab
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1408961 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/session')
-rw-r--r-- | modules/session/mod_session_dbd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/session/mod_session_dbd.c b/modules/session/mod_session_dbd.c index 59575ed558..dc30bc1425 100644 --- a/modules/session/mod_session_dbd.c +++ b/modules/session/mod_session_dbd.c @@ -348,10 +348,10 @@ static apr_status_t dbd_remove(request_rec * r, const char *key) rv = dbd_init(r, conf->deletelabel, &dbd, &statement); if (rv != APR_SUCCESS) { - // No need to do additional error logging here, it has already - // been done in dbd_init if needed - return rv; - } + // No need to do additional error logging here, it has already + // been done in dbd_init if needed + return rv; + } rv = apr_dbd_pvbquery(dbd->driver, r->pool, dbd->handle, &rows, statement, key, NULL); |