diff --git a/libscan/ooxml/ooxml.c b/libscan/ooxml/ooxml.c index a01d7ce..5da6e0a 100644 --- a/libscan/ooxml/ooxml.c +++ b/libscan/ooxml/ooxml.c @@ -94,7 +94,7 @@ static int read_part(scan_ooxml_ctx_t *ctx, struct archive *a, text_buffer_t *bu return 0; } -void parse_doc(scan_ooxml_ctx_t *ctx, vfile_t *f, document_t *doc) { +void parse_ooxml(scan_ooxml_ctx_t *ctx, vfile_t *f, document_t *doc) { size_t buf_len; void * buf = read_all(f, &buf_len); diff --git a/libscan/ooxml/ooxml.h b/libscan/ooxml/ooxml.h index 431d1d4..5b2513c 100644 --- a/libscan/ooxml/ooxml.h +++ b/libscan/ooxml/ooxml.h @@ -11,6 +11,6 @@ typedef struct { store_callback_t store; } scan_ooxml_ctx_t; -void parse_doc(scan_ooxml_ctx_t *ctx, vfile_t *f, document_t *doc); +void parse_ooxml(scan_ooxml_ctx_t *ctx, vfile_t *f, document_t *doc); #endif