summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-01-09 00:19:25 +1100
committerDarren Tucker <dtucker@zip.com.au>2004-01-09 00:19:25 +1100
commitfd0894adae297f5ce1695d78b5738e21414d480c (patch)
treed0c9bd8faee69bfb2566a93117cea3657a3b9044
parent0234e8607fc8643c0bf151d735c5771caf61f9f8 (diff)
- (dtucker) [configure.ac] Remove extra (typo) comma.
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac4
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a79b9fcf8..be12d3738 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
120040108 120040108
2 - (dtucker) [auth-pam.c defines.h] Bug #783: move __unused to defines.h and 2 - (dtucker) [auth-pam.c defines.h] Bug #783: move __unused to defines.h and
3 only define if not already. From des at freebsd.org. 3 only define if not already. From des at freebsd.org.
4 - (dtucker) [configure.ac] Remove extra (typo) comma.
4 5
520040105 620040105
6 - (dtucker) [contrib/ssh-copy-id] Bug #781: exit if ssh fails. Patch from 7 - (dtucker) [contrib/ssh-copy-id] Bug #781: exit if ssh fails. Patch from
@@ -1654,4 +1655,4 @@
1654 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 1655 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1655 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 1656 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1656 1657
1657$Id: ChangeLog,v 1.3164 2004/01/08 12:32:04 dtucker Exp $ 1658$Id: ChangeLog,v 1.3165 2004/01/08 13:19:25 dtucker Exp $
diff --git a/configure.ac b/configure.ac
index afc4ae9b4..10025cbc8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.183 2004/01/05 11:36:52 dtucker Exp $ 1# $Id: configure.ac,v 1.184 2004/01/08 13:19:25 dtucker Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -793,7 +793,7 @@ AC_CHECK_FUNCS(setresuid, [
793int main(){errno=0; setresuid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);} 793int main(){errno=0; setresuid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
794 ], 794 ],
795 [AC_MSG_RESULT(yes)], 795 [AC_MSG_RESULT(yes)],
796 [AC_DEFINE(BROKEN_SETRESUID), 796 [AC_DEFINE(BROKEN_SETRESUID)
797 AC_MSG_RESULT(not implemented)] 797 AC_MSG_RESULT(not implemented)]
798 ) 798 )
799]) 799])