diff options
Diffstat (limited to 'src/engine.c')
-rw-r--r-- | src/engine.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/engine.c b/src/engine.c index c78f6b3..1cb3ae7 100644 --- a/src/engine.c +++ b/src/engine.c @@ -60,10 +60,15 @@ ingest(char **buffer) contentfor_operands_t *operand = (contentfor_operands_t *) directive->operands; printf("CONTENTFOR: %s\n", operand->key); + printf("CONTENT: %s\n", operand->content); return; break; } + + /* NOTE: This will never occur */ + case ENDCONTENT: + break; } if (directive != NULL) |