1
0
フォーク 0
ミラー元 git://git.gnupg.org/gnupg.git 同期済み 2025-07-02 22:46:30 +02:00

Revert that last stupid setuid detection fix.

このコミットが含まれているのは:
Werner Koch 2008-07-17 19:49:51 +00:00
コミット a7c9e79190
5個のファイルの変更5行の追加15行の削除

ファイルの表示

@ -1,8 +1,3 @@
2008-07-17 Werner Koch <wk@g10code.com>
* exechelp.c (gnupg_spawn_process_detached): Do not run the setuid
test for root.
2008-06-26 Werner Koch <wk@g10code.com>
* estream.c (es_write_sanitized): Loose check for control

ファイルの表示

@ -826,7 +826,7 @@ gnupg_spawn_process_detached (const char *pgmname, const char *argv[],
pid_t pid;
int i;
if (getuid() && getuid() != geteuid())
if (getuid() != geteuid())
return gpg_error (GPG_ERR_BUG);
if (access (pgmname, X_OK))