- (bal) 4711 not 04711 for ssh binary.

This commit is contained in:
Ben Lindstrom 2001-07-24 17:00:13 +00:00
parent 979c981f99
commit 8e2aa5bb63
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,6 @@
20010724
- (bal) 4711 not 04711 for ssh binary.
20010722 20010722
- (bal) Starting the Unicossmk merger. File merged TODO, configure.in, - (bal) Starting the Unicossmk merger. File merged TODO, configure.in,
myproposal.h, ssh_prng_cmds.in, and openbsd-compat/Makefile.in. myproposal.h, ssh_prng_cmds.in, and openbsd-compat/Makefile.in.
@ -6093,4 +6096,4 @@
- Wrote replacements for strlcpy and mkdtemp - Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1 - Released 1.0pre1
$Id: ChangeLog,v 1.1421 2001/07/22 20:45:39 mouring Exp $ $Id: ChangeLog,v 1.1422 2001/07/24 17:00:13 mouring Exp $

View File

@ -1,4 +1,4 @@
# $Id: configure.in,v 1.303 2001/07/22 19:32:01 mouring Exp $ # $Id: configure.in,v 1.304 2001/07/24 17:00:14 mouring Exp $
AC_INIT(ssh.c) AC_INIT(ssh.c)
@ -1679,11 +1679,11 @@ AC_ARG_ENABLE(suid-ssh,
SSHMODE=0711 SSHMODE=0711
;; ;;
*) AC_MSG_RESULT(yes) *) AC_MSG_RESULT(yes)
SSHMODE=04711 SSHMODE=4711
;; ;;
esac ], esac ],
AC_MSG_RESULT(yes) AC_MSG_RESULT(yes)
SSHMODE=04711 SSHMODE=4711
) )
AC_SUBST(SSHMODE) AC_SUBST(SSHMODE)