[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: verify N3322 functionality
From: |
Bruno Haible |
Subject: |
Re: verify N3322 functionality |
Date: |
Wed, 06 Nov 2024 12:44:39 +0100 |
This patch fixes a copy&paste mistake.
2024-11-06 Bruno Haible <bruno@clisp.org>
wcsncat: Fix configure test.
* m4/wcsncat.m4 (gl_FUNC_WCSNCAT): Fix wrong cache variable name.
diff --git a/m4/wcsncat.m4 b/m4/wcsncat.m4
index 7b04f23c95..6c08014700 100644
--- a/m4/wcsncat.m4
+++ b/m4/wcsncat.m4
@@ -1,5 +1,5 @@
# wcsncat.m4
-# serial 3
+# serial 4
dnl Copyright (C) 2011-2024 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@@ -31,7 +31,7 @@ AC_DEFUN([gl_FUNC_WCSNCAT]
darwin* | netbsd* | openbsd* | solaris* | cygwin*)
gl_cv_func_wcsncat_works="guessing no" ;;
*)
- gl_cv_func_strndup_works="guessing yes" ;;
+ gl_cv_func_wcsncat_works="guessing yes" ;;
esac
])
])