diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-10-06 20:03:57 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-10-06 20:03:57 +0400 |
commit | 6b306ab8752befc28d259be55495f8249cc2df24 (patch) | |
tree | 0fa3d471aef61925563709e0f8ee5667b57c7a9d /src/view.h | |
parent | 8d0053734fb5a4ccd8c3bda731e6b7c8261c6f67 (diff) | |
download | rspamd-6b306ab8752befc28d259be55495f8249cc2df24.tar.gz rspamd-6b306ab8752befc28d259be55495f8249cc2df24.zip |
Fixes types (use glib ones) no functional change.
Now all comments in commit logs beginning with '*' would be included in changelog, so
important changes would be separated from small ones.
Diffstat (limited to 'src/view.h')
-rw-r--r-- | src/view.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/view.h b/src/view.h index 0b3412c85..0c7e7a433 100644 --- a/src/view.h +++ b/src/view.h @@ -24,13 +24,13 @@ struct rspamd_view { struct rspamd_view* init_view (memory_pool_t *pool); -gboolean add_view_from (struct rspamd_view *view, char *line); -gboolean add_view_rcpt (struct rspamd_view *view, char *line); -gboolean add_view_ip (struct rspamd_view *view, char *line); -gboolean add_view_client_ip (struct rspamd_view *view, char *line); -gboolean add_view_symbols (struct rspamd_view *view, char *line); +gboolean add_view_from (struct rspamd_view *view, gchar *line); +gboolean add_view_rcpt (struct rspamd_view *view, gchar *line); +gboolean add_view_ip (struct rspamd_view *view, gchar *line); +gboolean add_view_client_ip (struct rspamd_view *view, gchar *line); +gboolean add_view_symbols (struct rspamd_view *view, gchar *line); -gboolean check_view (GList *views, const char *symbol, struct worker_task *task); +gboolean check_view (GList *views, const gchar *symbol, struct worker_task *task); gboolean check_skip (GList *views, struct worker_task *task); #endif |