1
0
mirror of https://https.git.savannah.gnu.org/git/gnulib.git synced 2026-04-28 06:33:36 +00:00

relocatable-prog-wrapper: Fix syntax error on Linux (regr. 2025-12-09).

Reported by Erik Schnetter <schnetter@gmail.com>
at <https://savannah.gnu.org/bugs/?67987>.

* lib/progreloc.c (find_executable): Remove extraneous brace.
This commit is contained in:
Bruno Haible
2026-01-29 19:04:32 +01:00
parent 7d75436a1b
commit 5b8f646ff5
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,10 @@
2026-01-29 Bruno Haible <bruno@clisp.org>
relocatable-prog-wrapper: Fix syntax error on Linux (regr. 2025-12-09).
Reported by Erik Schnetter <schnetter@gmail.com>
at <https://savannah.gnu.org/bugs/?67987>.
* lib/progreloc.c (find_executable): Remove extraneous brace.
2026-01-27 Collin Funk <collin.funk1@gmail.com>
doc: Fix some links to copy_file_range issues.

View File

@@ -259,7 +259,6 @@ find_executable (const char *argv0)
char *link = xreadlink (buf);
if (link != NULL && link[0] != '[')
return link;
}
if (executable_fd < 0)
executable_fd = open (buf, O_EXEC | O_CLOEXEC, 0);
}