diff options
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/tempnam.c | 4 | ||||
-rw-r--r-- | stdio-common/tmpfile.c | 4 | ||||
-rw-r--r-- | stdio-common/tmpfile64.c | 4 | ||||
-rw-r--r-- | stdio-common/tmpnam.c | 4 | ||||
-rw-r--r-- | stdio-common/tmpnam_r.c | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/stdio-common/tempnam.c b/stdio-common/tempnam.c index 47ecf6d56d..61af145605 100644 --- a/stdio-common/tempnam.c +++ b/stdio-common/tempnam.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1993, 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1991,1993,1996,1997,1998,1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -34,7 +34,7 @@ tempnam (const char *dir, const char *pfx) if (__path_search (buf, FILENAME_MAX, dir, pfx, 1)) return NULL; - if (__gen_tempname (buf, 0, 0)) + if (__gen_tempname (buf, __GT_NOCREATE)) return NULL; return __strdup (buf); diff --git a/stdio-common/tmpfile.c b/stdio-common/tmpfile.c index cfd3606bec..ccf0630fa1 100644 --- a/stdio-common/tmpfile.c +++ b/stdio-common/tmpfile.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1993, 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1991,1993,1996,1997,1998,1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -38,7 +38,7 @@ tmpfile (void) if (__path_search (buf, FILENAME_MAX, NULL, "tmpf", 0)) return NULL; - fd = __gen_tempname (buf, 1, 0); + fd = __gen_tempname (buf, __GT_FILE); if (fd < 0) return NULL; diff --git a/stdio-common/tmpfile64.c b/stdio-common/tmpfile64.c index 2ea6bfc3a8..f8670cbf9b 100644 --- a/stdio-common/tmpfile64.c +++ b/stdio-common/tmpfile64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1993, 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1991,1993,1996,1997,1998,1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -37,7 +37,7 @@ tmpfile64 () if (__path_search (buf, FILENAME_MAX, NULL, "tmpf", 0)) return NULL; - fd = __gen_tempname (buf, 1, 1); + fd = __gen_tempname (buf, __GT_BIGFILE); if (fd < 0) return NULL; diff --git a/stdio-common/tmpnam.c b/stdio-common/tmpnam.c index beba12d130..f78f0f0bbf 100644 --- a/stdio-common/tmpnam.c +++ b/stdio-common/tmpnam.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1993, 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1991,1993,1996,1997,1998,1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -37,7 +37,7 @@ tmpnam (char *s) if (__path_search (s ? : tmpbuf, L_tmpnam, NULL, NULL, 0)) return NULL; - if (__gen_tempname (s ? : tmpbuf, 0, 0)) + if (__gen_tempname (s ? : tmpbuf, __GT_NOCREATE)) return NULL; if (s == NULL) diff --git a/stdio-common/tmpnam_r.c b/stdio-common/tmpnam_r.c index 26214ecf2b..409d031dec 100644 --- a/stdio-common/tmpnam_r.c +++ b/stdio-common/tmpnam_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1993, 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1991,1993,1996,1997,1998,1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -28,7 +28,7 @@ tmpnam_r (char *s) if (__path_search (s, L_tmpnam, NULL, NULL, 0)) return NULL; - if (__gen_tempname (s, 0, 0)) + if (__gen_tempname (s, __GT_NOCREATE)) return NULL; return s; |