diff options
author | Florent Thoumie <flz@FreeBSD.org> | 2007-05-19 20:36:56 +0000 |
---|---|---|
committer | Florent Thoumie <flz@FreeBSD.org> | 2007-05-19 20:36:56 +0000 |
commit | d4f0d0048a8755106a4b0445221a19761e746984 (patch) | |
tree | c87184c5bfeaf942c827c5f706186ce9786a2588 /x11-servers/xorg-server/files/patch-CVE-2006-0745 | |
parent | Document png -- DoS crash vulnerability. (diff) |
- Welcome X.org 7.2 \o/.
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
Diffstat (limited to 'x11-servers/xorg-server/files/patch-CVE-2006-0745')
-rw-r--r-- | x11-servers/xorg-server/files/patch-CVE-2006-0745 | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/x11-servers/xorg-server/files/patch-CVE-2006-0745 b/x11-servers/xorg-server/files/patch-CVE-2006-0745 deleted file mode 100644 index afb7d4de763d..000000000000 --- a/x11-servers/xorg-server/files/patch-CVE-2006-0745 +++ /dev/null @@ -1,20 +0,0 @@ ---- programs/Xserver/hw/xfree86/common/xf86Init.c.orig 2006-03-17 23:30:10.000000000 +0200 -+++ programs/Xserver/hw/xfree86/common/xf86Init.c 2006-03-17 23:29:35.000000000 +0200 -@@ -1376,7 +1376,7 @@ - } - - /* First the options that are only allowed for root */ -- if (getuid() == 0 || geteuid != 0) -+ if (getuid() == 0 || geteuid() != 0) - { - if (!strcmp(argv[i], "-modulepath")) - { -@@ -1679,7 +1679,7 @@ - } - if (!strcmp(argv[i], "-configure")) - { -- if (getuid() != 0 && geteuid == 0) { -+ if (getuid() != 0 && geteuid() == 0) { - ErrorF("The '-configure' option can only be used by root.\n"); - exit(1); - } |