aboutsummaryrefslogtreecommitdiff
path: root/src/regex
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2013-07-19 15:08:58 +0000
committerBart Polot <bart@net.in.tum.de>2013-07-19 15:08:58 +0000
commit1421f70e9abc758b976bd89020bcbfa4be3964ae (patch)
treebb2aa030a211a514c42554dc426e81beeb91324a /src/regex
parent0f3bb8ef18e89b3e5b549d99e59b1dba1000788a (diff)
downloadgnunet-1421f70e9abc758b976bd89020bcbfa4be3964ae.tar.gz
gnunet-1421f70e9abc758b976bd89020bcbfa4be3964ae.zip
- Fix coverity 10602
Diffstat (limited to 'src/regex')
-rw-r--r--src/regex/plugin_block_regex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex/plugin_block_regex.c b/src/regex/plugin_block_regex.c
index d8312a1a0..317f65d8d 100644
--- a/src/regex/plugin_block_regex.c
+++ b/src/regex/plugin_block_regex.c
@@ -290,7 +290,7 @@ block_plugin_regex_get_key (void *cls, enum GNUNET_BLOCK_Type type,
290 } 290 }
291 return GNUNET_OK; 291 return GNUNET_OK;
292 case GNUNET_BLOCK_TYPE_REGEX_ACCEPT: 292 case GNUNET_BLOCK_TYPE_REGEX_ACCEPT:
293 if (sizeof (struct RegexAcceptBlock) != block_size); 293 if (sizeof (struct RegexAcceptBlock) != block_size)
294 { 294 {
295 GNUNET_break_op (0); 295 GNUNET_break_op (0);
296 return GNUNET_NO; 296 return GNUNET_NO;