From 5b31576b57bf9fec9dd9c76f3bc51df86c4986c8 Mon Sep 17 00:00:00 2001 From: bitraid Date: Fri, 27 Jul 2018 10:37:44 +0300 Subject: [PATCH] install.nsh: fix case for a StrCpy command --- misc/nsis/install.nsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/nsis/install.nsh b/misc/nsis/install.nsh index f2b2c8600..e497ce11b 100755 --- a/misc/nsis/install.nsh +++ b/misc/nsis/install.nsh @@ -268,7 +268,7 @@ Section "Register with Windows" SectionWindowsRegister ; HTML and URL handlers StrCpy $2 "${PRODUCT_NAME}HTML" - StrCPY $3 "${PRODUCT_NAME} HTML Document" + StrCpy $3 "${PRODUCT_NAME} HTML Document" WriteRegHandler: WriteRegStr SHCTX "SOFTWARE\Classes\$2" "" "$3" WriteRegStr SHCTX "SOFTWARE\Classes\$2" "FriendlyTypeName" "$3"