summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7a58a2f)
raw | patch | inline | side by side (parent: 7a58a2f)
author | Florian Forster <octo@huhu.verplant.org> | |
Wed, 1 Sep 2010 18:36:40 +0000 (20:36 +0200) | ||
committer | Florian Forster <octo@huhu.verplant.org> | |
Wed, 1 Sep 2010 18:36:40 +0000 (20:36 +0200) |
src/network.c | patch | blob | history |
diff --git a/src/network.c b/src/network.c
index 5bbdd8922c65638f01cd1366d6c3f3ffc7453164..242b9d25331df0d51243fdf398ccad429e7201bd 100644 (file)
--- a/src/network.c
+++ b/src/network.c
#include "utils_fbhash.h"
#include "utils_avltree.h"
#include "utils_cache.h"
+#include "utils_complain.h"
#include "network.h"
static int parse_part_sign_sha256 (sockent_t *se, /* {{{ */
void **ret_buffer, size_t *ret_buffer_len, int flags)
{
+ static c_complain_t complain_no_users = C_COMPLAIN_INIT_STATIC;
+
char *buffer;
size_t buffer_len;
size_t buffer_offset;
if (se->data.server.userdb == NULL)
{
- NOTICE ("network plugin: Received signed network packet but can't verify "
- "it because no user DB has been configured. Will accept it.");
+ c_complain (LOG_NOTICE, &complain_no_users,
+ "network plugin: Received signed network packet but can't verify it "
+ "because no user DB has been configured. Will accept it.");
return (0);
}