You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-util/yacc/files/yacc-1.9.1-mkstemp.patch

16 lines
417 B

--- a/main.c.orig 2002-12-17 14:28:54.000000000 -0500
+++ b/main.c 2002-12-17 14:29:31.000000000 -0500
@@ -264,9 +264,9 @@
text_file_name[len + 5] = 't';
union_file_name[len + 5] = 'u';
- mktemp(action_file_name);
- mktemp(text_file_name);
- mktemp(union_file_name);
+ mkstemp(action_file_name);
+ mkstemp(text_file_name);
+ mkstemp(union_file_name);
len = strlen(file_prefix);