20001229
- (bal) Fixed spelling of 'authorized_keys' in ssh-copy-id.1 by Christian Kurz <shorty@debain.org> 20001228 - (bal) SCO patch to not include <sys/queue.h> since it's unrelated header. Patch by Tim Rice <tim@multitalents.net> - Updated TODO w/ known HP/UX issue - (bal) removed extra <netdb.h> noticed by Kevin Steves and removed the bad reference to 'NeXT including it else were' on the #ifdef version.
This commit is contained in:
parent
9fa07d6318
commit
42717bf8ff
10
ChangeLog
10
ChangeLog
|
@ -1,7 +1,17 @@
|
||||||
|
|
||||||
|
20001229
|
||||||
|
- (bal) Fixed spelling of 'authorized_keys' in ssh-copy-id.1 by Christian
|
||||||
|
Kurz <shorty@debain.org>
|
||||||
|
|
||||||
20001228
|
20001228
|
||||||
- (bal) Patch to add libutil.h to loginrec.c only if the platform has
|
- (bal) Patch to add libutil.h to loginrec.c only if the platform has
|
||||||
libutil.h. Suggested by Pekka Savola <pekka@netcore.fi>
|
libutil.h. Suggested by Pekka Savola <pekka@netcore.fi>
|
||||||
- (djm) Update to new x11-askpass in RPM spec
|
- (djm) Update to new x11-askpass in RPM spec
|
||||||
|
- (bal) SCO patch to not include <sys/queue.h> since it's unrelated
|
||||||
|
header. Patch by Tim Rice <tim@multitalents.net>
|
||||||
|
- Updated TODO w/ known HP/UX issue
|
||||||
|
- (bal) removed extra <netdb.h> noticed by Kevin Steves and removed the
|
||||||
|
bad reference to 'NeXT including it else were' on the #ifdef version.
|
||||||
|
|
||||||
20001227
|
20001227
|
||||||
- (bal) Typo in configure.in: entut?ent should be endut?ent. Suggested by
|
- (bal) Typo in configure.in: entut?ent should be endut?ent. Suggested by
|
||||||
|
|
3
TODO
3
TODO
|
@ -21,6 +21,9 @@ Programming:
|
||||||
|
|
||||||
- Build an automated test suite
|
- Build an automated test suite
|
||||||
|
|
||||||
|
- HP/UX has issues with SIGCHILD handling. There needs to be a wait() defined
|
||||||
|
before reinstall. Keven Steves <stevesk@pobox.com>
|
||||||
|
|
||||||
Documentation:
|
Documentation:
|
||||||
- More and better
|
- More and better
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
|
|
||||||
/* SCO workaround */
|
/* SCO workaround */
|
||||||
#undef BROKEN_SYS_TERMIO_H
|
#undef BROKEN_SYS_TERMIO_H
|
||||||
|
#undef HAVE_BOGUS_SYS_QUEUE_H
|
||||||
|
|
||||||
/* Define if you have SCO protected password database */
|
/* Define if you have SCO protected password database */
|
||||||
#undef HAVE_SCO_PROTECTED_PW
|
#undef HAVE_SCO_PROTECTED_PW
|
||||||
|
|
|
@ -230,6 +230,7 @@ mips-sony-bsd|mips-sony-newsos4)
|
||||||
rsh_path="/usr/bin/rcmd"
|
rsh_path="/usr/bin/rcmd"
|
||||||
AC_DEFINE(HAVE_SCO_PROTECTED_PW)
|
AC_DEFINE(HAVE_SCO_PROTECTED_PW)
|
||||||
AC_DEFINE(DISABLE_SHADOW)
|
AC_DEFINE(DISABLE_SHADOW)
|
||||||
|
AC_DEFINE(HAVE_BOGUS_SYS_QUEUE_H)
|
||||||
;;
|
;;
|
||||||
*-dec-osf*)
|
*-dec-osf*)
|
||||||
# This is untested
|
# This is untested
|
||||||
|
|
|
@ -58,7 +58,7 @@ option is used, or the
|
||||||
produced no output, then it uses the contents of the identity
|
produced no output, then it uses the contents of the identity
|
||||||
file. Once it has one or more fingerprints (by whatever means) it
|
file. Once it has one or more fingerprints (by whatever means) it
|
||||||
uses ssh to append them to
|
uses ssh to append them to
|
||||||
.B ~/.ssh/authorised_keys
|
.B ~/.ssh/authorized_keys
|
||||||
on the remote machine (creating the file, and directory, if necessary)
|
on the remote machine (creating the file, and directory, if necessary)
|
||||||
|
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
|
|
|
@ -32,7 +32,6 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
|
||||||
#include <netinet/tcp.h>
|
#include <netinet/tcp.h>
|
||||||
#endif
|
#endif
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
#include <netdb.h>
|
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
@ -56,8 +55,7 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
|
||||||
#ifdef HAVE_NETGROUP_H
|
#ifdef HAVE_NETGROUP_H
|
||||||
# include <netgroup.h>
|
# include <netgroup.h>
|
||||||
#endif
|
#endif
|
||||||
#if defined(HAVE_NETDB_H) && !defined(HAVE_NEXT)
|
#if defined(HAVE_NETDB_H)
|
||||||
/* Next includes this as part of another header */
|
|
||||||
# include <netdb.h>
|
# include <netdb.h>
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_ENDIAN_H
|
#ifdef HAVE_ENDIAN_H
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: ssh-keyscan.c,v 1.6 2000/12/19 23:17:58 markus Exp $");
|
RCSID("$OpenBSD: ssh-keyscan.c,v 1.6 2000/12/19 23:17:58 markus Exp $");
|
||||||
|
|
||||||
#ifdef HAVE_SYS_QUEUE_H
|
#if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H)
|
||||||
#include <sys/queue.h>
|
#include <sys/queue.h>
|
||||||
#else
|
#else
|
||||||
#include "bsd-queue.h"
|
#include "bsd-queue.h"
|
||||||
|
|
Loading…
Reference in New Issue