Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SoftEtherVPN/SoftEtherVPN_Stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaiyuu Nobori <da.git@softether.co.jp>2016-11-27 11:57:47 +0300
committerGitHub <noreply@github.com>2016-11-27 11:57:47 +0300
commit2a2f47e0c89170d3a12475658050c18ba8f703eb (patch)
tree5acf32149361a5e27f22f3ab4e5899d103d82d59
parentb818cd53c9c5c7084793b3f7f3d98682be4c0edb (diff)
parenta737ec5d203a6f01f5a086be5ea01e09a54cd239 (diff)
Merge pull request #127 from nna774/fix/vpncmd-LogFileGet
fix LogFileGet won't save to SAVEPATH
-rw-r--r--src/Cedar/Command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Cedar/Command.c b/src/Cedar/Command.c
index 80872d2f..41dbd289 100644
--- a/src/Cedar/Command.c
+++ b/src/Cedar/Command.c
@@ -10039,7 +10039,7 @@ UINT PsLogFileGet(CONSOLE *c, char *cmd_name, wchar_t *str, void *param)
return ERR_INVALID_PARAMETER;
}
- filename = GetParamStr(o, "SAVE");
+ filename = GetParamStr(o, "SAVEPATH");
c->Write(c, _UU("CMD_LogFileGet_START"));