2017-04-22 12:02:27 +00:00
|
|
|
From ba74d639178916221c748b0d5d89f7ac4f5ed669 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Fabian Vogt <fabian@ritter-vogt.de>
|
|
|
|
Date: Sat, 22 Apr 2017 14:00:33 +0200
|
|
|
|
Subject: [PATCH] Revert "Disallow executing Dolphin as root on Linux"
|
|
|
|
|
|
|
|
This reverts commit 0bdd8e0b0516555c6233fdc7901e9b417cf89791.
|
|
|
|
We ship a desktop file to open dolphin as root and we allow YaST on the
|
|
|
|
desktop. So this patch is absolutely pointless for us.
|
|
|
|
---
|
2023-03-20 08:51:23 +00:00
|
|
|
src/main.cpp | 11 -------------
|
|
|
|
1 file changed, 11 deletions(-)
|
2017-04-22 12:02:27 +00:00
|
|
|
|
2023-03-20 08:51:23 +00:00
|
|
|
Index: dolphin-19.11.70git.20230131T022613~e4e68b90b/src/main.cpp
|
2017-07-15 21:27:52 +00:00
|
|
|
===================================================================
|
2023-03-20 08:51:23 +00:00
|
|
|
--- dolphin-19.11.70git.20230131T022613~e4e68b90b.orig/src/main.cpp 2023-01-31 03:26:13.000000000 +0100
|
|
|
|
+++ dolphin-19.11.70git.20230131T022613~e4e68b90b/src/main.cpp 2023-01-31 07:40:48.073527099 +0100
|
|
|
|
@@ -43,25 +43,8 @@
|
|
|
|
#endif
|
|
|
|
#endif
|
2017-04-22 12:02:27 +00:00
|
|
|
|
|
|
|
-#ifndef Q_OS_WIN
|
|
|
|
-#include <unistd.h>
|
|
|
|
-#endif
|
|
|
|
-#include <iostream>
|
|
|
|
-
|
2021-07-27 09:35:36 +00:00
|
|
|
int main(int argc, char **argv)
|
2017-04-22 12:02:27 +00:00
|
|
|
{
|
|
|
|
-#ifndef Q_OS_WIN
|
2018-07-28 13:22:05 +00:00
|
|
|
- // Prohibit using sudo or kdesu (but allow using the root user directly)
|
2017-04-22 12:02:27 +00:00
|
|
|
- if (getuid() == 0) {
|
2018-07-28 13:22:05 +00:00
|
|
|
- if (!qEnvironmentVariableIsEmpty("SUDO_USER")) {
|
2023-03-20 08:51:23 +00:00
|
|
|
- std::cout << "Running Dolphin with sudo can cause bugs and expose you to security vulnerabilities." << std::endl;
|
2018-07-28 13:22:05 +00:00
|
|
|
- return EXIT_FAILURE;
|
|
|
|
- } else if (!qEnvironmentVariableIsEmpty("KDESU_USER")) {
|
2023-03-20 08:51:23 +00:00
|
|
|
- std::cout << "Running Dolphin with kdesu can cause bugs and expose you to security vulnerabilities." << std::endl;
|
2018-07-28 13:22:05 +00:00
|
|
|
- return EXIT_FAILURE;
|
|
|
|
- }
|
2017-04-22 12:02:27 +00:00
|
|
|
- }
|
|
|
|
-#endif
|
2022-03-29 06:44:15 +00:00
|
|
|
|
2019-11-29 11:38:56 +00:00
|
|
|
/**
|
|
|
|
* enable high dpi support
|