]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Quote the definition of OSSH_CHECK_HEADER_FOR_FIELD
authorSebastian Andrzej Siewior <sebastian@breakpoint.cc>
Sat, 5 Sep 2020 15:50:03 +0000 (17:50 +0200)
committerDarren Tucker <dtucker@dtucker.net>
Fri, 11 Sep 2020 03:18:42 +0000 (13:18 +1000)
autoreconf complains about underquoted definition of
OSSH_CHECK_HEADER_FOR_FIELD after aclocal.m4 has been and now is beeing
recreated.

Quote OSSH_CHECK_HEADER_FOR_FIELD as suggested.

Signed-off-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
m4/openssh.m4

index b70856e433a5bc86dbb6daa8bd15c98f426a8241..6a49f10fab7e648cfad8b1d0fc3d99d2b93b0989 100644 (file)
@@ -131,7 +131,7 @@ dnl OSSH_CHECK_HEADER_FOR_FIELD(field, header, symbol)
 dnl Does AC_EGREP_HEADER on 'header' for the string 'field'
 dnl If found, set 'symbol' to be defined. Cache the result.
 dnl TODO: This is not foolproof, better to compile and read from there
-AC_DEFUN(OSSH_CHECK_HEADER_FOR_FIELD, [
+AC_DEFUN([OSSH_CHECK_HEADER_FOR_FIELD], [
 # look for field '$1' in header '$2'
        dnl This strips characters illegal to m4 from the header filename
        ossh_safe=`echo "$2" | sed 'y%./+-%__p_%'`