Fixed certutil path on Windows

This commit is contained in:
pokamest 2023-03-19 11:58:22 +00:00 committed by GitHub
parent cba78190a8
commit 7eb1a4b489
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -241,7 +241,7 @@ QString Utils::certUtilPath()
{ {
#ifdef Q_OS_WIN #ifdef Q_OS_WIN
QString winPath = QString::fromUtf8(qgetenv("windir")); QString winPath = QString::fromUtf8(qgetenv("windir"));
return winPath + "system32\\certutil.exe"; return winPath + "\\system32\\certutil.exe";
#else #else
return ""; return "";
#endif #endif