- (tim) [openbsd-compat/dirname.h] Remove ^M causing some compilers to
issue warning (line 1: tokens ignored at end of directive line) - (tim) [sshconnect1.c] give the compiler something to do for success: if KRB5 and AFS are not defined. (ERROR: "sshconnect1.c", line 1274: Syntax error before or at: })
This commit is contained in:
parent
7281a9bc8c
commit
024acc46e6
|
@ -136,6 +136,11 @@
|
||||||
- (stevesk) more sync for session.c
|
- (stevesk) more sync for session.c
|
||||||
- (stevesk) sync servconf.h (comments)
|
- (stevesk) sync servconf.h (comments)
|
||||||
- (tim) [contrib/caldera/openssh.spec] sync with Caldera
|
- (tim) [contrib/caldera/openssh.spec] sync with Caldera
|
||||||
|
- (tim) [openbsd-compat/dirname.h] Remove ^M causing some compilers to
|
||||||
|
issue warning (line 1: tokens ignored at end of directive line)
|
||||||
|
- (tim) [sshconnect1.c] give the compiler something to do for success:
|
||||||
|
if KRB5 and AFS are not defined
|
||||||
|
(ERROR: "sshconnect1.c", line 1274: Syntax error before or at: })
|
||||||
|
|
||||||
20010629
|
20010629
|
||||||
- (bal) Removed net_aton() since we don't use it any more
|
- (bal) Removed net_aton() since we don't use it any more
|
||||||
|
@ -5963,4 +5968,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1382 2001/07/05 00:45:28 tim Exp $
|
$Id: ChangeLog,v 1.1383 2001/07/05 04:27:20 tim Exp $
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef HAVE_DIRNAME
|
#ifndef HAVE_DIRNAME
|
||||||
|
|
||||||
char *dirname(const char *path);
|
char *dirname(const char *path);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1271,4 +1271,9 @@ ssh_userauth1(const char *local_user, const char *server_user, char *host,
|
||||||
send_afs_tokens();
|
send_afs_tokens();
|
||||||
}
|
}
|
||||||
#endif /* AFS */
|
#endif /* AFS */
|
||||||
|
|
||||||
|
/* give the compiler something to do for success: */
|
||||||
|
#if !defined(KRB5) && !defined(AFS)
|
||||||
|
;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue