summaryrefslogtreecommitdiffstats
path: root/libgnu/getdelim.c
diff options
context:
space:
mode:
authorUlf Hermann <[email protected]>2018-07-17 09:14:31 +0200
committerUlf Hermann <[email protected]>2018-07-20 14:45:07 +0000
commit6166020e5f1acc87c3f00f0d2f15f073971be545 (patch)
tree14720ecb9d6e28847c78fa77a931a5328e8afe31 /libgnu/getdelim.c
parent191f0057b0b978a0e5bf9168acdcc381b4196494 (diff)
Update gnulib modules, replacing canonicalize with canonicalize-lgpl
We need realpath() now, as upstream has changed to use that. Updating single gnulib modules is not really possible, so we update everything. Change-Id: I32943a1c8af7c1ecce625dca173a942cc58d9c38 Reviewed-by: Christian Kandeler <[email protected]>
Diffstat (limited to 'libgnu/getdelim.c')
-rw-r--r--libgnu/getdelim.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libgnu/getdelim.c b/libgnu/getdelim.c
index e2e08853..cc1e9fe3 100644
--- a/libgnu/getdelim.c
+++ b/libgnu/getdelim.c
@@ -1,5 +1,5 @@
/* getdelim.c --- Implementation of replacement getdelim function.
- Copyright (C) 1994, 1996-1998, 2001, 2003, 2005-2017 Free Software
+ Copyright (C) 1994, 1996-1998, 2001, 2003, 2005-2018 Free Software
Foundation, Inc.
This program is free software; you can redistribute it and/or
@@ -13,7 +13,7 @@
General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, see <http://www.gnu.org/licenses/>. */
+ along with this program; if not, see <https://www.gnu.org/licenses/>. */
/* Ported from glibc by Simon Josefsson. */
@@ -50,9 +50,9 @@
static void
alloc_failed (void)
{
-#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
+#if defined _WIN32 && ! defined __CYGWIN__
/* Avoid errno problem without using the realloc module; see:
- http://lists.gnu.org/archive/html/bug-gnulib/2016-08/msg00025.html */
+ https://lists.gnu.org/r/bug-gnulib/2016-08/msg00025.html */
errno = ENOMEM;
#endif
}