diff options
author | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-10-17 21:24:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-17 21:24:29 +0200 |
commit | 6701b0c2025987674708c9984c1d76461428c09e (patch) | |
tree | 1f5328fcfa9974f75119c7ffbaf111b175b56e95 /xmrstak/cli/cli-miner.cpp | |
parent | c7c5824364109139bd545e28c2d744399edae869 (diff) | |
parent | 1fc87d737fcba5b254603893403b92ffe99c6247 (diff) | |
download | xmr-stak-6701b0c2025987674708c9984c1d76461428c09e.zip xmr-stak-6701b0c2025987674708c9984c1d76461428c09e.tar.gz |
Merge pull request #47 from fireice-uk/topic-re-add-uac-manifest
Re-add UAC manifest and WIN_UAC cmake option
Diffstat (limited to 'xmrstak/cli/cli-miner.cpp')
-rw-r--r-- | xmrstak/cli/cli-miner.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/xmrstak/cli/cli-miner.cpp b/xmrstak/cli/cli-miner.cpp index 9be93a4..2760deb 100644 --- a/xmrstak/cli/cli-miner.cpp +++ b/xmrstak/cli/cli-miner.cpp @@ -36,10 +36,6 @@ # include "xmrstak/http/httpd.hpp" #endif -#ifdef _WIN32 -# include "xmrstak/misc/uac.hpp" -#endif - #include <stdlib.h> #include <stdio.h> #include <string> @@ -92,11 +88,6 @@ void help() int main(int argc, char *argv[]) { -#ifdef _WIN32 - if (!IsElevated() && SelfElevate(argv[0])) - return 0; -#endif - #ifndef CONF_NO_TLS SSL_library_init(); SSL_load_error_strings(); |