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/fuzzy_storage.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/fuzzy_storage.h')
-rw-r--r-- | src/fuzzy_storage.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fuzzy_storage.h b/src/fuzzy_storage.h index c317bd99f..5a02d4871 100644 --- a/src/fuzzy_storage.h +++ b/src/fuzzy_storage.h @@ -12,16 +12,16 @@ struct fuzzy_cmd { u_char cmd; - uint32_t blocksize; - int32_t value; - int32_t flag; + guint32 blocksize; + gint32 value; + gint32 flag; u_char hash[FUZZY_HASHLEN]; }; struct fuzzy_session { struct rspamd_worker *worker; struct fuzzy_cmd cmd; - int fd; + gint fd; u_char *pos; socklen_t salen; struct sockaddr_storage sa; |