- (dtucker) [configure.ac] Remove extra (typo) comma.

This commit is contained in:
Darren Tucker 2004-01-09 00:19:25 +11:00
parent 0234e8607f
commit fd0894adae
2 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,7 @@
20040108 20040108
- (dtucker) [auth-pam.c defines.h] Bug #783: move __unused to defines.h and - (dtucker) [auth-pam.c defines.h] Bug #783: move __unused to defines.h and
only define if not already. From des at freebsd.org. only define if not already. From des at freebsd.org.
- (dtucker) [configure.ac] Remove extra (typo) comma.
20040105 20040105
- (dtucker) [contrib/ssh-copy-id] Bug #781: exit if ssh fails. Patch from - (dtucker) [contrib/ssh-copy-id] Bug #781: exit if ssh fails. Patch from
@ -1654,4 +1655,4 @@
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
Report from murple@murple.net, diagnosis from dtucker@zip.com.au Report from murple@murple.net, diagnosis from dtucker@zip.com.au
$Id: ChangeLog,v 1.3164 2004/01/08 12:32:04 dtucker Exp $ $Id: ChangeLog,v 1.3165 2004/01/08 13:19:25 dtucker Exp $

View File

@ -1,4 +1,4 @@
# $Id: configure.ac,v 1.183 2004/01/05 11:36:52 dtucker Exp $ # $Id: configure.ac,v 1.184 2004/01/08 13:19:25 dtucker Exp $
AC_INIT AC_INIT
AC_CONFIG_SRCDIR([ssh.c]) AC_CONFIG_SRCDIR([ssh.c])
@ -793,7 +793,7 @@ AC_CHECK_FUNCS(setresuid, [
int main(){errno=0; setresuid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);} int main(){errno=0; setresuid(0,0,0); if (errno==ENOSYS) exit(1); else exit(0);}
], ],
[AC_MSG_RESULT(yes)], [AC_MSG_RESULT(yes)],
[AC_DEFINE(BROKEN_SETRESUID), [AC_DEFINE(BROKEN_SETRESUID)
AC_MSG_RESULT(not implemented)] AC_MSG_RESULT(not implemented)]
) )
]) ])