xorg-xauth: remove unneeded patch

This commit is contained in:
Leonid Pliushch 2019-07-20 00:34:18 +03:00 committed by Yaksh Bariya
parent 76473aef3a
commit 442d684abe
No known key found for this signature in database
GPG Key ID: F7486BA7D3D27581
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
diff -uNr xauth-1.0.10/process.c xauth-1.0.10.mod/process.c
--- xauth-1.0.10/process.c 2017-01-29 23:00:12.000000000 +0200
+++ xauth-1.0.10.mod/process.c 2018-10-03 02:07:13.062110327 +0300
@@ -891,15 +891,10 @@
ProgramName, temp_name);
} else {
(void) unlink (xauth_filename);
-#if defined(WIN32) || defined(__UNIXOS2__)
if (rename(temp_name, xauth_filename) == -1)
-#else
- /* Attempt to rename() if link() fails, since this may be on a FS that does not support hard links */
- if (link (temp_name, xauth_filename) == -1 && rename(temp_name, xauth_filename) == -1)
-#endif
{
fprintf (stderr,
- "%s: unable to link authority file %s, use %s\n",
+ "%s: unable to link/rename authority file %s, use %s\n",
ProgramName, xauth_filename, temp_name);
} else {
(void) unlink (temp_name);