Minor bug in ssh_connect1.c when AFS is defined.
Booker C. Bense
bbense at networking.stanford.edu
Thu Oct 4 01:42:37 EST 2001
- I'm not really sure if this is a bug in openssh or in
Kth's krb4-1.1. Anyway, if you define --with-afs=/usr/athena[1]
and --with-kerberos4=/usr/athena on
Solaris 2.7, you need to apply this minor patch to get
the client to build.
- You could argue that kafs.h should include these sys
files since it uses macros inside them.
- Booker C. Bense
[1]- Where kth installs by default.
diff -u -r1.1.1.1 sshconnect1.c
--- sshconnect1.c 2001/10/01 18:18:47 1.1.1.1
+++ sshconnect1.c 2001/10/02 22:53:09
@@ -25,6 +25,8 @@
#include <krb5.h>
#endif
#ifdef AFS
+#include <sys/ioccom.h>
+#include <sys/ioctl.h>
#include <kafs.h>
#include "radix.h"
#endif
More information about the openssh-unix-dev
mailing list