diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-05-18 02:03:08 -0300 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-05-18 02:03:08 -0300 |
commit | 26fe49e2f51f653798866614d3f92e4a237e2be5 (patch) | |
tree | 980043c538ace803a6adc56369acf625a4b786e0 /src/template-parser.c | |
parent | ad2b741571fb45a786882021dfc2c3fefaa34fa6 (diff) | |
download | blogc-26fe49e2f51f653798866614d3f92e4a237e2be5.tar.gz blogc-26fe49e2f51f653798866614d3f92e4a237e2be5.tar.bz2 blogc-26fe49e2f51f653798866614d3f92e4a237e2be5.zip |
minor fixes
Diffstat (limited to 'src/template-parser.c')
-rw-r--r-- | src/template-parser.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/template-parser.c b/src/template-parser.c index 8844b8f..beaaf7f 100644 --- a/src/template-parser.c +++ b/src/template-parser.c @@ -132,7 +132,7 @@ blogc_template_parse(const char *src, size_t src_len, blogc_error_t **err) break; if (c == ' ') { if ((current - start == 5) && - (0 == strncmp("block", src + start, current - start))) + (0 == strncmp("block", src + start, 5))) { if (block_state == BLOCK_CLOSED) { state = TEMPLATE_BLOCK_BLOCK_TYPE_START; @@ -145,7 +145,7 @@ blogc_template_parse(const char *src, size_t src_len, blogc_error_t **err) break; } else if ((current - start == 8) && - (0 == strncmp("endblock", src + start, current - start))) + (0 == strncmp("endblock", src + start, 8))) { if (block_state != BLOCK_CLOSED) { state = TEMPLATE_BLOCK_END; @@ -159,7 +159,7 @@ blogc_template_parse(const char *src, size_t src_len, blogc_error_t **err) break; } else if ((current - start == 5) && - (0 == strncmp("ifdef", src + start, current - start))) + (0 == strncmp("ifdef", src + start, 5))) { state = TEMPLATE_BLOCK_IF_START; type = BLOGC_TEMPLATE_IFDEF_STMT; @@ -168,7 +168,7 @@ blogc_template_parse(const char *src, size_t src_len, blogc_error_t **err) break; } else if ((current - start == 6) && - (0 == strncmp("ifndef", src + start, current - start))) + (0 == strncmp("ifndef", src + start, 6))) { state = TEMPLATE_BLOCK_IF_START; type = BLOGC_TEMPLATE_IFNDEF_STMT; @@ -177,7 +177,7 @@ blogc_template_parse(const char *src, size_t src_len, blogc_error_t **err) break; } else if ((current - start == 2) && - (0 == strncmp("if", src + start, current - start))) + (0 == strncmp("if", src + start, 2))) { state = TEMPLATE_BLOCK_IF_START; type = BLOGC_TEMPLATE_IF_STMT; @@ -186,7 +186,7 @@ blogc_template_parse(const char *src, size_t src_len, blogc_error_t **err) break; } else if ((current - start == 5) && - (0 == strncmp("endif", src + start, current - start))) + (0 == strncmp("endif", src + start, 5))) { if (if_count > 0) { state = TEMPLATE_BLOCK_END; @@ -225,7 +225,7 @@ blogc_template_parse(const char *src, size_t src_len, blogc_error_t **err) break; if (c == ' ') { if ((current - start == 5) && - (0 == strncmp("entry", src + start, current - start))) + (0 == strncmp("entry", src + start, 5))) { block_state = BLOCK_ENTRY; end = current; @@ -233,7 +233,7 @@ blogc_template_parse(const char *src, size_t src_len, blogc_error_t **err) break; } else if ((current - start == 7) && - (0 == strncmp("listing", src + start, current - start))) + (0 == strncmp("listing", src + start, 7))) { block_state = BLOCK_LISTING; end = current; @@ -241,7 +241,7 @@ blogc_template_parse(const char *src, size_t src_len, blogc_error_t **err) break; } else if ((current - start == 12) && - (0 == strncmp("listing_once", src + start, current - start))) + (0 == strncmp("listing_once", src + start, 12))) { block_state = BLOCK_LISTING_ONCE; end = current; |