summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2022-10-01 14:00:14 +0200
committerjvoisin2022-10-01 14:00:14 +0200
commit5cfe176622798be4207852293b726014dc039478 (patch)
tree945da25933a34cb03836da883974bb6d0a0b985e
parent655efa7bc32887ab3ed0d34f4b2d730c2a710619 (diff)
Fix an overzealous `const`
-rw-r--r--src/sp_config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp_config.c b/src/sp_config.c
index ff6cdd9..b1e1e9c 100644
--- a/src/sp_config.c
+++ b/src/sp_config.c
@@ -4,7 +4,7 @@
4 4
5#include "php_snuffleupagus.h" 5#include "php_snuffleupagus.h"
6 6
7static const sp_config_keyword sp_func[] = { 7static sp_config_keyword sp_func[] = {
8 {parse_unserialize, SP_TOKEN_UNSERIALIZE_HMAC, &(SPCFG(unserialize))}, 8 {parse_unserialize, SP_TOKEN_UNSERIALIZE_HMAC, &(SPCFG(unserialize))},
9 {parse_enable, SP_TOKEN_HARDEN_RANDOM, &(SPCFG(random).enable)}, 9 {parse_enable, SP_TOKEN_HARDEN_RANDOM, &(SPCFG(random).enable)},
10 {parse_log_media, SP_TOKEN_LOG_MEDIA, &(SPCFG(log_media))}, 10 {parse_log_media, SP_TOKEN_LOG_MEDIA, &(SPCFG(log_media))},