depot/pkgs/games/xjump/darwin.patch
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

21 lines
687 B
Diff

--- xjump/src/main.c 2018-02-20 09:15:15.608807657 +0100
+++ xjump-patched/src/main.c 2018-02-20 09:15:34.148949100 +0100
@@ -604,18 +604,6 @@
* optimistic privilege dropping function. */
setgroups(0, NULL);
- if (setresgid(-1, realgid, realgid) != 0) {
- perror("Could not drop setgid privileges. Aborting.");
- exit(1);
- }
-
- /* Dropping user privileges must come last.
- * Otherwise we won't be able to drop group privileges anymore */
- if (setresuid(-1, realuid, realuid) != 0) {
- perror("Could not drop setuid privileges. Aborting.");
- exit(1);
- }
-
/* From now on we run with regular user privileges */
static XtActionsRec a_table[] = {