diff options
author | default <nobody@localhost> | 2024-05-22 14:14:29 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2024-05-22 14:14:29 +0200 |
commit | 8fd070bb9a1a8e355f0899ef2f02c55ab90a09d8 (patch) | |
tree | 319a868f4fe1843bf3c8dce3d124c762970a4a29 /data.c | |
parent | c9c9b0bfdceefbded1250ad3947d6248232e080c (diff) |
Fixed warning.
Diffstat (limited to 'data.c')
-rw-r--r-- | data.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -114,7 +114,7 @@ int srv_open(const char *basedir, int auto_upgrade) #endif #ifdef __OpenBSD__ - char *v = xs_dict_get(srv_config, "disable_openbsd_security"); + const char *v = xs_dict_get(srv_config, "disable_openbsd_security"); if (v && xs_type(v) == XSTYPE_TRUE) { srv_debug(1, xs_dup("OpenBSD security disabled by admin")); |