Revert "Fixes unchecked return from link() in dotlock.c" This reverts commit 317b7f6b53d8a4272acf8ef1b56f3406e9bc2691.
1 files changed, 2 insertions(+), 3 deletions(-) M dotlock.c
M dotlock.c => dotlock.c +2 -3
@@ 595,7 595,6 @@ dotlock_lock (const char *realpath) int hard_count = 0; struct stat sb; time_t t; int rc; snprintf (nfslockfile, sizeof (nfslockfile), "%s.%s.%d", @@ realpath, Hostname, (int) getpid ()); 630,10 629,10 @@ dotlock_lock (const char *realpath) { BEGIN_PRIVILEGED (); rc = link (nfslockfile, lockfile); link (nfslockfile, lockfile); END_PRIVILEGED (); if (rc != 0 || stat (nfslockfile, &sb) != 0) if (stat (nfslockfile, &sb) != 0) { /* perror ("stat"); */ return DL_EX_ERROR;