mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-20 10:51:48 +02:00
* gl/lib/tempname.c.diff: Fix recent breakage so it applies again. Invalid patch was noticed at http://hydra.nixos.org/eval/1172233 * cfg.mk: Exempt diff files from these "id_est" syntax checks. (sc_ensure_gl_diffs_apply): A new syntax check, to ensure all patches under gl/ apply cleanly. Note we use --fuzz=0 to check patches apply cleanly for safety, due to the patch(1) issue detailed in commit v8.21-117-g46f7e05 * gl/lib/regcomp.c.diff: Rediffed. * gl/lib/regex_internal.c.diff: Likewise. * gl/lib/regex_internal.h.diff: Likewise. * gl/lib/regexec.c.diff: Likewise. * gl/lib/tempname.h.diff: Likewise.
13 lines
433 B
Diff
13 lines
433 B
Diff
diff --git a/lib/tempname.h b/lib/tempname.h
|
|
index b560ee5..6e162c3 100644
|
|
--- a/lib/tempname.h
|
|
+++ b/lib/tempname.h
|
|
@@ -46,5 +46,7 @@
|
|
|
|
We use a clever algorithm to get hard-to-predict names. */
|
|
extern int gen_tempname (char *tmpl, int suffixlen, int flags, int kind);
|
|
+extern int gen_tempname_len (char *tmpl, int suffixlen, int flags, int kind,
|
|
+ size_t x_suffix_len);
|
|
|
|
#endif /* GL_TEMPNAME_H */
|