From a027bcb9ebd764a9d3237663830baacebe295e5f Mon Sep 17 00:00:00 2001 From: simon987 Date: Fri, 3 Apr 2020 09:00:35 -0400 Subject: [PATCH] doc -> ooxml --- libscan/ooxml/ooxml.c | 2 +- libscan/ooxml/ooxml.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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