X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/6d21deb6e48627922fb223a4281ade46d6d230ec..9eb780a2884351f26cef451df104f8f0e9cdef00:/src/main.cpp diff --git a/src/main.cpp b/src/main.cpp index a9b85dbcc..611e3631c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -54,15 +54,11 @@ int main(int argc, char **argv) // Prohibit using sudo or kdesu (but allow using the root user directly) if (getuid() == 0) { if (!qEnvironmentVariableIsEmpty("SUDO_USER")) { - std::cout << "Running Dolphin with sudo can cause bugs and expose you to security vulnerabilities. " - "Instead use Dolphin normally and you will be prompted for elevated privileges when " - "performing file operations that require them." + std::cout << "Running Dolphin with sudo can cause bugs and expose you to security vulnerabilities." << std::endl; return EXIT_FAILURE; } else if (!qEnvironmentVariableIsEmpty("KDESU_USER")) { - std::cout << "Running Dolphin with kdesu can cause bugs and expose you to security vulnerabilities. " - "Instead use Dolphin normally and you will be prompted for elevated privileges when " - "performing file operations that require them." + std::cout << "Running Dolphin with kdesu can cause bugs and expose you to security vulnerabilities." << std::endl; return EXIT_FAILURE; }