[PATCH] Fix typos and an error

Johan Gill johane at lysator.liu.se
Thu Nov 24 20:26:09 EST 2005


This patch fixes two typos and one case of wrong parameter ordering in configure.ac.

Cheers
Johan Gill, johane at lysator.liu.se
-------------- next part --------------
Index: configure.ac
===================================================================
RCS file: /cvs/openssh/configure.ac,v
retrieving revision 1.307
diff -u -r1.307 configure.ac
--- configure.ac	12 Nov 2005 07:42:37 -0000	1.307
+++ configure.ac	24 Nov 2005 09:00:16 -0000
@@ -410,8 +410,8 @@
 *-sni-sysv*)
 	# /usr/ucblib MUST NOT be searched on ReliantUNIX
 	AC_CHECK_LIB(dl, dlsym, ,)
-	# -lresolv needs to be at then end of LIBS or DNS lookups break
-	AC_CHECK_LIB(res_query, resolv, [ LIBS="$LIBS -lresolv" ])
+	# -lresolv needs to be at the end of LIBS or DNS lookups break
+	AC_CHECK_LIB(resolv, res_query, [ LIBS="$LIBS -lresolv" ])
 	IPADDR_IN_DISPLAY=yes
 	AC_DEFINE(USE_PIPES)
 	AC_DEFINE(IP_TOS_IS_BROKEN)
@@ -910,7 +910,7 @@
 	[
 		AC_MSG_RESULT(no)
 		AC_DEFINE(BROKEN_ONE_BYTE_DIRENT_D_NAME, 1,
-			[Define in your struct dirent expects you to
+			[Define if your struct dirent expects you to
 			allocate extra space for d_name])
 	],
 	[


More information about the openssh-unix-dev mailing list