summaryrefslogtreecommitdiff
path: root/auth-sia.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-09-01 15:38:36 +1000
committerDamien Miller <djm@mindrot.org>2006-09-01 15:38:36 +1000
commitded319cca23923651ddc5e6a4bd4bda66d0737f4 (patch)
tree481c5b651ae31a109124e6b60f5ce713c4a46b67 /auth-sia.c
parent288cbbd59ed70dc137f83588a9ded946069776cc (diff)
- (djm) [audit-bsm.c audit.c auth-bsdauth.c auth-chall.c auth-pam.c]
[auth-rsa.c auth-shadow.c auth-sia.c auth1.c auth2-chall.c] [auth2-gss.c auth2-kbdint.c auth2-none.c authfd.c authfile.c] [cipher-3des1.c cipher-aes.c cipher-bf1.c cipher-ctr.c clientloop.c] [dh.c dns.c entropy.c gss-serv-krb5.c gss-serv.c hostfile.c kex.c] [kexdhc.c kexdhs.c kexgexc.c kexgexs.c key.c loginrec.c mac.c] [md5crypt.c monitor.c monitor_wrap.c readconf.c rsa.c] [scard-opensc.c scard.c session.c ssh-add.c ssh-agent.c ssh-dss.c] [ssh-keygen.c ssh-keysign.c ssh-rsa.c ssh.c sshconnect.c] [sshconnect1.c sshconnect2.c sshd.c rc4.diff] [openbsd-compat/bsd-cray.c openbsd-compat/port-aix.c] [openbsd-compat/port-linux.c openbsd-compat/port-solaris.c] [openbsd-compat/port-uw.c] Lots of headers for SCO OSR6, mainly adding stdarg.h for log.h; compile problems reported by rac AT tenzing.org
Diffstat (limited to 'auth-sia.c')
-rw-r--r--auth-sia.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/auth-sia.c b/auth-sia.c
index af7182b48..63304d36e 100644
--- a/auth-sia.c
+++ b/auth-sia.c
@@ -25,14 +25,6 @@
25#include "includes.h" 25#include "includes.h"
26 26
27#ifdef HAVE_OSF_SIA 27#ifdef HAVE_OSF_SIA
28#include "ssh.h"
29#include "auth.h"
30#include "auth-sia.h"
31#include "log.h"
32#include "servconf.h"
33#include "canohost.h"
34#include "uidswap.h"
35
36#include <sia.h> 28#include <sia.h>
37#include <siad.h> 29#include <siad.h>
38#include <pwd.h> 30#include <pwd.h>
@@ -40,8 +32,17 @@
40#include <setjmp.h> 32#include <setjmp.h>
41#include <sys/resource.h> 33#include <sys/resource.h>
42#include <unistd.h> 34#include <unistd.h>
35#include <stdarg.h>
43#include <string.h> 36#include <string.h>
44 37
38#include "ssh.h"
39#include "auth.h"
40#include "auth-sia.h"
41#include "log.h"
42#include "servconf.h"
43#include "canohost.h"
44#include "uidswap.h"
45
45extern ServerOptions options; 46extern ServerOptions options;
46extern int saved_argc; 47extern int saved_argc;
47extern char **saved_argv; 48extern char **saved_argv;