From 92daeaae70f948b0da9a177f030cb490f3a1bd1c Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 11 Sep 2024 13:17:13 -0400 Subject: Fix errant change of "cmd" string * Was supposed to be pandoc_versioned_args --- src/stasis_indexer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stasis_indexer.c b/src/stasis_indexer.c index 25f0fa7..ef6375b 100644 --- a/src/stasis_indexer.c +++ b/src/stasis_indexer.c @@ -311,12 +311,12 @@ int indexer_make_website(struct Delivery *ctx) { // >= 1.10.0.1 if (pandoc_version >= 0x010a0001) { - strcat(cmd, "-f markdown+autolink_bare_uris "); + strcat(pandoc_versioned_args, "-f markdown+autolink_bare_uris "); } // >= 3.1.10 if (pandoc_version >= 0x03010a00) { - strcat(cmd, "-f markdown+alerts "); + strcat(pandoc_versioned_args, "-f markdown+alerts "); } } -- cgit