bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: new module 'strerror_r-posix'


From: Bruno Haible
Subject: Re: new module 'strerror_r-posix'
Date: Tue, 30 Nov 2010 21:47:10 +0100
User-agent: KMail/1.9.9

There was a small mistake in this new module. Fixed like this:


2010-11-30  Bruno Haible  <address@hidden>

        strerror_r-posix: Fix autoconf test.
        * m4/strerror_r.m4 (gl_FUNC_STRERROR_R): Fix typo.

--- m4/strerror_r.m4.orig       Tue Nov 30 21:41:37 2010
+++ m4/strerror_r.m4    Tue Nov 30 21:41:36 2010
@@ -1,4 +1,4 @@
-# strerror_r.m4 serial 1
+# strerror_r.m4 serial 2
 dnl Copyright (C) 2002, 2007-2010 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -50,7 +50,7 @@
                   int strerror_r (int, char *, size_t);
                 ]],
                 [[char buf[79];
-                  return strerror (EACCES, buf, 0) < 0
+                  return strerror_r (EACCES, buf, 0) < 0
                          || strerror_r (EACCES, buf, sizeof (buf)) != 0;
                 ]])],
              [gl_cv_func_strerror_r_works=yes],



reply via email to

[Prev in Thread] Current Thread [Next in Thread]