~yolanda.robla/ubuntu/saucy/clamav/dep-8-tests

« back to all changes in this revision

Viewing changes to libclamav/entitylist.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Tautschnig, Michael Tautschnig
  • Date: 2009-11-02 10:24:35 UTC
  • mfrom: (0.39.5 squeeze)
  • mto: (122.1.1 raring-security)
  • mto: This revision was merged to the branch mainline in revision 73.
  • Revision ID: james.westby@ubuntu.com-20091102102435-yzkn3jdvo4gank3q
Tags: 0.95.3+dfsg-1
[ Michael Tautschnig ]
* New upstream version
* Should fix clamd segfault on startup (closes: #537629)
* Updated info in clamd.conf man page (closes: #534443)
* Proper socket ownership setup, no chgrp in make_dir (closes: #553333)

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 */
20
20
 
21
21
#include <hashtab.h>
22
 
static struct element entities_htable_elements[] = {
 
22
static struct cli_element entities_htable_elements[] = {
23
23
        {"rsaquo", 8250, 6},
24
24
        {NULL,0,0},
25
25
        {NULL,0,0},
2069
2069
        {NULL,0,0},
2070
2070
        {NULL,0,0},
2071
2071
};
2072
 
const struct hashtable entities_htable = {
 
2072
const struct cli_hashtable entities_htable = {
2073
2073
        entities_htable_elements, 2048, 743, 1638
2074
2074
};