Browse code

add missing prototype for cli_ac_setdepth() (bb#711)

git-svn: trunk@3397

Tomasz Kojm authored on 2007/12/13 07:59:51
Showing 2 changed files
... ...
@@ -1,3 +1,7 @@
1
+Wed Dec 12 23:17:02 CET 2007 (tk)
2
+---------------------------------
3
+  * libclamav/matcher-ac.h: add missing prototype for cli_ac_setdepth() (bb#711)
4
+
1 5
 Wed Dec 12 21:59:00 CET 2007 (tk)
2 6
 ---------------------------------
3 7
   * libclamunrar, libclamunrar_iface: re-include RAR code
... ...
@@ -70,6 +70,6 @@ int cli_ac_buildtrie(struct cli_matcher *root);
70 70
 int cli_ac_init(struct cli_matcher *root, uint8_t mindepth, uint8_t maxdepth);
71 71
 void cli_ac_free(struct cli_matcher *root);
72 72
 int cli_ac_addsig(struct cli_matcher *root, const char *virname, const char *hexsig, uint32_t sigid, uint16_t parts, uint16_t partno, uint16_t type, uint32_t mindist, uint32_t maxdist, const char *offset, uint8_t target);
73
-
73
+void cli_ac_setdepth(uint8_t mindepth, uint8_t maxdepth);
74 74
 
75 75
 #endif