From 8e4feb2d03efd6805de5a89cc1473dea252eece4 Mon Sep 17 00:00:00 2001 From: Kareem Date: Fri, 15 Nov 2024 16:02:42 -0700 Subject: [PATCH] Prefix wolfSSH specific options with wolfSSH_. --- apps/wolfsshd/configuration.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/wolfsshd/configuration.c b/apps/wolfsshd/configuration.c index 6ac01956..1ddb5ccb 100644 --- a/apps/wolfsshd/configuration.c +++ b/apps/wolfsshd/configuration.c @@ -391,13 +391,13 @@ static const CONFIG_OPTION options[NUM_OPTIONS] = { {OPT_FORCE_CMD, "ForceCommand"}, {OPT_HOST_CERT, "HostCertificate"}, {OPT_TRUSTED_USER_CA_KEYS, "TrustedUserCAKeys"}, - {OPT_TRUSTED_SYSTEM_CA_KEYS, "TrustedSystemCAKeys"}, {OPT_PIDFILE, "PidFile"}, {OPT_BANNER, "Banner"}, - {OPT_TRUSTED_USER_CA_STORE, "TrustedUserCaStore"}, - {OPT_WIN_USER_STORES, "WinUserStores"}, - {OPT_WIN_USER_DW_FLAGS, "WinUserDwFlags"}, - {OPT_WIN_USER_PV_PARA, "WinUserPvPara"}, + {OPT_TRUSTED_SYSTEM_CA_KEYS, "wolfSSH_TrustedSystemCAKeys"}, + {OPT_TRUSTED_USER_CA_STORE, "wolfSSH_TrustedUserCaStore"}, + {OPT_WIN_USER_STORES, "wolfSSH_WinUserStores"}, + {OPT_WIN_USER_DW_FLAGS, "wolfSSH_WinUserDwFlags"}, + {OPT_WIN_USER_PV_PARA, "wolfSSH_WinUserPvPara"}, }; /* returns WS_SUCCESS on success */