aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorAlexander Moisseev <moiseev@mezonplus.ru>2017-06-28 10:53:11 +0300
committerAlexander Moisseev <moiseev@mezonplus.ru>2017-06-28 10:53:11 +0300
commit0a5db3730615811249affa44d9e83085b5660e24 (patch)
tree75bd446249578793641857f1ecca8ccd177ddd86 /contrib
parent0f44e6037d66339931d89d0ca9b56529184cb2ec (diff)
downloadrspamd-0a5db3730615811249affa44d9e83085b5660e24.tar.gz
rspamd-0a5db3730615811249affa44d9e83085b5660e24.zip
[Refactor] Fix misspelled variable name in cdb_make.c
Diffstat (limited to 'contrib')
-rw-r--r--contrib/cdb/cdb_make.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/cdb/cdb_make.c b/contrib/cdb/cdb_make.c
index b5ce28eeb..646a7e43f 100644
--- a/contrib/cdb/cdb_make.c
+++ b/contrib/cdb/cdb_make.c
@@ -320,7 +320,7 @@ static int findrec(struct cdb_make *cdbmp, const void *key, unsigned klen,
struct cdb_rl *rl;
struct cdb_rec *rp, *rs;
unsigned r;
- int seeked = 0;
+ int sought = 0;
int ret = 0;
for (rl = cdbmp->cdb_rec[hval & 255]; rl; rl = rl->next)
for (rs = rl->rec, rp = rs + rl->cnt; --rp >= rs;) {
@@ -330,9 +330,9 @@ static int findrec(struct cdb_make *cdbmp, const void *key, unsigned klen,
* smarter match() that looks into cdb_buf too, but
* most of a time here spent in finding hash values
* (above), not keys */
- if (!seeked && _cdb_make_flush (cdbmp) < 0)
+ if (!sought && _cdb_make_flush (cdbmp) < 0)
return -1;
- seeked = 1;
+ sought = 1;
r = match (cdbmp, rp->rpos, key, klen);
if (!r)
continue;
@@ -356,7 +356,7 @@ static int findrec(struct cdb_make *cdbmp, const void *key, unsigned klen,
--rl->cnt;
--cdbmp->cdb_rcnt;
}
- finish: if (seeked && lseek (cdbmp->cdb_fd, cdbmp->cdb_dpos, SEEK_SET) < 0)
+ finish: if (sought && lseek (cdbmp->cdb_fd, cdbmp->cdb_dpos, SEEK_SET) < 0)
return -1;
return ret;
}