]> andersk Git - openssh.git/commitdiff
- (djm) [audit-bsm.c audit.c auth-bsdauth.c auth-chall.c auth-pam.c]
authordjm <djm>
Fri, 1 Sep 2006 05:38:36 +0000 (05:38 +0000)
committerdjm <djm>
Fri, 1 Sep 2006 05:38:36 +0000 (05:38 +0000)
   [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

59 files changed:
ChangeLog
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
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
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

index c21a4a2af34c1fd6a13f298bd28822af62bfe896..750eaed54595e83ce284ef0edfd494a7ae52c002 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,20 @@
+20060901
+ - (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
+
 20060831
  - (djm) [CREDITS LICENCE Makefile.in auth.c configure.ac includes.h ]
    [platform.c platform.h sshd.c openbsd-compat/Makefile.in]
index dbdfc2a211d12cfebc8666bd69a414bc50fb46bc..ad4fe6ab4e4889be64bb57d3472cda6f2119a36a 100644 (file)
@@ -39,6 +39,7 @@
 
 #include <sys/types.h>
 
+#include <stdarg.h>
 #include <unistd.h>
 
 #include "ssh.h"
diff --git a/audit.c b/audit.c
index 4ff008e19b5dadfbe53754ebd22cc4c3674f5cc9..bb386d852a648577e38f0c5f41153959c51f1c70 100644 (file)
--- a/audit.c
+++ b/audit.c
@@ -26,6 +26,9 @@
 
 #include "includes.h"
 
+#include <stdarg.h>
+#include <string.h>
+
 #ifdef SSH_AUDIT_EVENTS
 
 #include "audit.h"
index f718e5d38b171645872d6a9105d2835d333076fd..37d527d11a4e4586a59aecdc5974559ca99bfb5f 100644 (file)
@@ -27,6 +27,8 @@
 
 #include <sys/types.h>
 
+#include <stdarg.h>
+
 #ifdef BSD_AUTH
 #include "xmalloc.h"
 #include "key.h"
index 9c1079a17b613519497757755e16c831f89e6181..919b1eaa43cfcdf2ec09bf1c95d05f2861c7f1a6 100644 (file)
@@ -27,6 +27,8 @@
 
 #include <sys/types.h>
 
+#include <stdarg.h>
+
 #include "xmalloc.h"
 #include "key.h"
 #include "hostfile.h"
index 8e9361caa796375de9e3aceeb437cdf4da90db75..493993a10d1c6699dd3709c0b44f7386016640c4 100644 (file)
@@ -54,6 +54,7 @@
 
 #include <errno.h>
 #include <signal.h>
+#include <stdarg.h>
 #include <string.h>
 #include <unistd.h>
 
index 1c66b86a4c70295c18c496b1ed33cb1eea343d36..8c43458b0f8456ab75055592a888bf5619490aa5 100644 (file)
@@ -24,6 +24,7 @@
 
 #include <pwd.h>
 #include <stdio.h>
+#include <stdarg.h>
 #include <string.h>
 
 #include "xmalloc.h"
index 52447fe4a2f2e446a94af421e712fb7f113a0022..8b3160aeedb7d06674f1104bc134bf8c67d4980b 100644 (file)
@@ -26,6 +26,7 @@
 
 #if defined(USE_SHADOW) && defined(HAS_SHADOW_EXPIRE)
 #include <shadow.h>
+#include <stdarg.h>
 #include <string.h>
 
 #include "key.h"
index af7182b4834eb8c22ab9e08f7acb60067a680699..63304d36e08f2acabc112ca4a7f7b39e8e6fb4a3 100644 (file)
 #include "includes.h"
 
 #ifdef HAVE_OSF_SIA
-#include "ssh.h"
-#include "auth.h"
-#include "auth-sia.h"
-#include "log.h"
-#include "servconf.h"
-#include "canohost.h"
-#include "uidswap.h"
-
 #include <sia.h>
 #include <siad.h>
 #include <pwd.h>
 #include <setjmp.h>
 #include <sys/resource.h>
 #include <unistd.h>
+#include <stdarg.h>
 #include <string.h>
 
+#include "ssh.h"
+#include "auth.h"
+#include "auth-sia.h"
+#include "log.h"
+#include "servconf.h"
+#include "canohost.h"
+#include "uidswap.h"
+
 extern ServerOptions options;
 extern int saved_argc;
 extern char **saved_argv;
diff --git a/auth1.c b/auth1.c
index 34dcf62669e2290ac82c6df7027c4802cdbcf30c..b9d6b1115f4f98d778f80186eacc41ee5cc6ce17 100644 (file)
--- a/auth1.c
+++ b/auth1.c
@@ -14,6 +14,7 @@
 
 #include <sys/types.h>
 
+#include <stdarg.h>
 #include <stdio.h>
 #include <string.h>
 #include <unistd.h>
index b091957b160dc060439d6ebb41b6650dbfc25531..b78b739cdcaf99153fd86640f41c983522fb5468 100644 (file)
@@ -28,6 +28,7 @@
 
 #include <sys/types.h>
 
+#include <stdarg.h>
 #include <stdio.h>
 #include <string.h>
 
index d88bc4273d92a25e6ed3eb15a3fad2ebe8452333..c77c841a3a8a792ef9d494cf23bd4ecf0b2a4052 100644 (file)
@@ -30,6 +30,8 @@
 
 #include <sys/types.h>
 
+#include <stdarg.h>
+
 #include "xmalloc.h"
 #include "key.h"
 #include "hostfile.h"
index 90159648454d2993136e4e033cf5bba17f3b4d13..a4fc9e6f73f23ea236cda775bedf755f84562d06 100644 (file)
@@ -27,6 +27,8 @@
 
 #include <sys/types.h>
 
+#include <stdarg.h>
+
 #include "xmalloc.h"
 #include "packet.h"
 #include "key.h"
index f455bdde315b9ebc6e179177d346f9fbc9fa5dc0..952b448248e94cd21d6ce76a6d11db0e0eccee88 100644 (file)
@@ -30,6 +30,7 @@
 #include <sys/uio.h>
 
 #include <fcntl.h>
+#include <stdarg.h>
 #include <unistd.h>
 
 #include "xmalloc.h"
index 5c910df135d4eefe7a176e62531b2e5c5df6211d..61faad12319c0d52e0d04fa18dda848992308dbc 100644 (file)
--- a/authfd.c
+++ b/authfd.c
@@ -47,6 +47,7 @@
 #include <fcntl.h>
 #include <stdlib.h>
 #include <signal.h>
+#include <stdarg.h>
 #include <string.h>
 #include <unistd.h>
 
index 675085646479ab091e212670d94d839cc4d3ff0f..735c6478096495fa392c74d1a1cdb8f73a405f90 100644 (file)
@@ -49,6 +49,7 @@
 
 #include <errno.h>
 #include <fcntl.h>
+#include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 61798bfde4f0199a8d1889d703bbcc786039e12b..fc16e20d7e790762ec7af1e73918e68577d28f0c 100644 (file)
@@ -29,6 +29,7 @@
 
 #include <openssl/evp.h>
 
+#include <stdarg.h>
 #include <string.h>
 
 #include "xmalloc.h"
index 99e9eea927d8e58bad96d0f536c13cdc7c7905da..14ef10f03c5dfa00036b96365957a46d4fdc3d74 100644 (file)
 #include "openbsd-compat/openssl-compat.h"
 
 #ifdef USE_BUILTIN_RIJNDAEL
+#include <sys/types.h>
 
 #include <openssl/evp.h>
+
+#include <stdarg.h>
+
 #include "rijndael.h"
 #include "xmalloc.h"
 #include "log.h"
index eb4c0477796423095edba34592c719b616cbab82..292488c5c61778bb4a1fd15577e40ae5a2c80266 100644 (file)
@@ -29,6 +29,7 @@
 
 #include <openssl/evp.h>
 
+#include <stdarg.h>
 #include <string.h>
 
 #include "xmalloc.h"
index 9733b7d5603b91bda1c6f782c3f87010f36fc32b..b24f3a4288662108d0aa67e99e0b4cc86df22d61 100644 (file)
@@ -18,6 +18,7 @@
 
 #include <sys/types.h>
 
+#include <stdarg.h>
 #include <string.h>
 
 #include <openssl/evp.h>
index 132d75a44c89cfb23a9c9f676235883350053353..88dfb1f324566d98e8752502400da1c0a53a8a22 100644 (file)
@@ -78,6 +78,7 @@
 #include <paths.h>
 #endif
 #include <signal.h>
+#include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
diff --git a/dh.c b/dh.c
index 925eedddf834038b00edd843426ed53fa821c56b..f6ef05cf66ab90adf998fbedc08dbfaee0c6a0ac 100644 (file)
--- a/dh.c
+++ b/dh.c
@@ -30,6 +30,7 @@
 #include <openssl/bn.h>
 #include <openssl/dh.h>
 
+#include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
diff --git a/dns.c b/dns.c
index 22921083579fe986a2efc3805c8c0868f8817620..92623de72863877b949cd51b436c3250d3b4e958 100644 (file)
--- a/dns.c
+++ b/dns.c
@@ -31,6 +31,7 @@
 #include <sys/socket.h>
 
 #include <netdb.h>
+#include <stdarg.h>
 #include <stdio.h>
 #include <string.h>
 
index c89e0b5289c6e306ac3168f17ba799a5926216f0..4f19c8767554e73c339bcac6c48675efc83c0ffd 100644 (file)
--- a/entropy.c
+++ b/entropy.c
@@ -34,6 +34,7 @@
 #ifdef HAVE_FCNTL_H
 # include <fcntl.h>
 #endif
+#include <stdarg.h>
 #include <unistd.h>
 
 #include <openssl/rand.h>
index 006bedad9b1fdf01ab201a0016bcf43432b2a7d7..5a625acb89a6bad1f4c45d452376c9de0c318aca 100644 (file)
@@ -31,6 +31,7 @@
 
 #include <sys/types.h>
 
+#include <stdarg.h>
 #include <string.h>
 
 #include "xmalloc.h"
index 296f63a89daca3ef6c16f0ccc666500aa3042e5b..e8191a859cb517a6f2b0ee01d36791c1e5b1b215 100644 (file)
@@ -30,6 +30,7 @@
 
 #include <sys/types.h>
 
+#include <stdarg.h>
 #include <string.h>
 #include <unistd.h>
 
index 08ba44264c096848b8fb866139063992fb3b20ce..2cceb352a1fe239792c10199f113cd472bcabbc0 100644 (file)
@@ -46,6 +46,7 @@
 #include <openssl/sha.h>
 
 #include <resolv.h>
+#include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
diff --git a/kex.c b/kex.c
index 0c36519a115733ad1d5929f1d7478d3939479be6..bfc1c11f977b2d971fdd366bf88c9390bf6bac63 100644 (file)
--- a/kex.c
+++ b/kex.c
@@ -28,6 +28,7 @@
 #include <sys/param.h>
 
 #include <signal.h>
+#include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index bf875ae07b1024a4593d9920db8e4de34bad004d..64de7af3088476903f0d68eb9c380dc561f7aee2 100644 (file)
--- a/kexdhc.c
+++ b/kexdhc.c
@@ -27,6 +27,7 @@
 
 #include <sys/types.h>
 
+#include <stdarg.h>
 #include <stdio.h>
 #include <string.h>
 #include <signal.h>
index 7d2c21eed50c877f6e9ff29e15009ea38ee11bd0..93ec97f931ea839155508dcf004f833f806ca29f 100644 (file)
--- a/kexdhs.c
+++ b/kexdhs.c
@@ -26,6 +26,8 @@
 #include "includes.h"
 
 #include <sys/types.h>
+
+#include <stdarg.h>
 #include <string.h>
 #include <signal.h>
 
index fc48880d46eb8cc9656d1223350c0054ef7bc767..2c19713e11a75dde09d1f4e5779cb91ac0b8fef0 100644 (file)
--- a/kexgexc.c
+++ b/kexgexc.c
@@ -28,6 +28,7 @@
 
 #include <sys/types.h>
 
+#include <stdarg.h>
 #include <stdio.h>
 #include <string.h>
 #include <signal.h>
index 7599f2af42d74b591f6775109f734d1be61b109a..5373a633a4dd4c9c66640743c61671624845081b 100644 (file)
--- a/kexgexs.c
+++ b/kexgexs.c
@@ -28,6 +28,7 @@
 
 #include <sys/param.h>
 
+#include <stdarg.h>
 #include <stdio.h>
 #include <string.h>
 #include <signal.h>
diff --git a/key.c b/key.c
index 40aab20ea9157ee977f058b567979460be1fd4b3..f3b3d6b9460f6df78f76221acf6c381c3ce0370b 100644 (file)
--- a/key.c
+++ b/key.c
@@ -39,6 +39,7 @@
 
 #include <openssl/evp.h>
 
+#include <stdarg.h>
 #include <stdio.h>
 #include <string.h>
 
index 7850312b62b757806f0e18ecfa619b1ed439cf31..67447edc06efaf34d32ac5af9d9409e9f25c141d 100644 (file)
 #include <errno.h>
 #include <fcntl.h>
 #include <pwd.h>
+#include <stdarg.h>
 #include <string.h>
 #include <unistd.h>
 
diff --git a/mac.c b/mac.c
index edf9b69bddf0aaafb8f5f62d5794da61c35b569d..e5d5bfa88e76e84be63f00adde174966ba551c28 100644 (file)
--- a/mac.c
+++ b/mac.c
@@ -29,6 +29,7 @@
 
 #include <openssl/hmac.h>
 
+#include <stdarg.h>
 #include <string.h>
 #include <signal.h>
 
index 253fdfdf27656a6f2d67f58466996cd8327b1957..22ef9893356eb0bcb65917002665415a4b68b599 100644 (file)
 #include "includes.h"
 
 #if defined(HAVE_MD5_PASSWORDS) && !defined(HAVE_MD5_CRYPT)
+#include <sys/types.h>
+
+#include <string.h>
+
 #include <openssl/md5.h>
 
 /* 0 ... 63 => ascii - 64 */
index 83b3765a0a3a78b2bb5123b907d909a2143be78d..b3ccde0176082c11d31c4ac178fe7cb47790088b 100644 (file)
--- a/monitor.c
+++ b/monitor.c
@@ -40,6 +40,7 @@
 #endif
 #include <pwd.h>
 #include <signal.h>
+#include <stdarg.h>
 #include <stdlib.h>
 #include <string.h>
 
index 431b3e495415f5f631b7654222e7f1eee4bbf65e..3865539dfd1a872ace67f26d485a8e023b77068c 100644 (file)
@@ -33,6 +33,7 @@
 #include <errno.h>
 #include <pwd.h>
 #include <signal.h>
+#include <stdarg.h>
 #include <stdio.h>
 #include <string.h>
 #include <unistd.h>
index 65f9143f526a27bd9c807290780ad13df22136ec..fda00da4c92149cfe1e2fd35f1d30307d718b026 100644 (file)
@@ -52,6 +52,7 @@
 #include <sys/secstat.h>
 #include <sys/stat.h>
 #include <sys/session.h>
+#include <stdarg.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
index 13a73e873cebbf27a2d42c457f83277c1f89d7a9..d0a42300578ccea4e93802a2f588177e04c603f9 100644 (file)
@@ -41,6 +41,7 @@
 # include <netdb.h>
 #endif
 #include <uinfo.h>
+#include <stdarg.h>
 #include <string.h>
 #include <unistd.h>
 #include <sys/socket.h>
index 5dedbdc640658ebe24580e8a72db97d3d307093d..5386d9dc79160e2db8ce8ac5ea4de271e591d72e 100644 (file)
@@ -24,6 +24,7 @@
 #include "includes.h"
 
 #include <errno.h>
+#include <stdarg.h>
 #include <string.h>
 
 #ifdef WITH_SELINUX
index aab777561731b0917f58d53698b577be70ca8f3c..8c773bd00bd0e0b739915a498c9debe93b1bcd61 100644 (file)
@@ -29,6 +29,7 @@
 #ifdef HAVE_FCNTL_H
 # include <fcntl.h>
 #endif
+#include <stdarg.h>
 #include <string.h>
 #include <unistd.h>
 
index c644271218a84c87fca9413326b3be0c2c712961..6f3523902590c90fe78e30cf46e1bda104b407d0 100644 (file)
 #include "includes.h"
 
 #ifdef HAVE_LIBIAF
+#include <sys/types.h>
 #ifdef HAVE_CRYPT_H
-#include <crypt.h>
+# include <crypt.h>
 #endif
+#include <pwd.h>
+#include <stdarg.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+
+#include "xmalloc.h"
 #include "packet.h"
 #include "buffer.h"
+#include "auth-options.h"
 #include "log.h"
 #include "servconf.h"
+#include "key.h"
+#include "hostfile.h"
 #include "auth.h"
-#include "auth-options.h"
+#include "ssh.h"
 
 int nischeck(char *);
 
index c57ea0c823c320ac71a71261c96464f3ab262dce..4cacf6026385526168689218de82252847323813 100644 (file)
@@ -24,6 +24,7 @@
 #include <errno.h>
 #include <netdb.h>
 #include <signal.h>
+#include <stdarg.h>
 #include <stdio.h>
 #include <string.h>
 #include <unistd.h>
diff --git a/rsa.c b/rsa.c
index 875b486c489f6804090849aa420f182d898f57aa..08cc82007162ea7371504219ed8ba270a8c23e2f 100644 (file)
--- a/rsa.c
+++ b/rsa.c
@@ -64,6 +64,7 @@
 
 #include <sys/types.h>
 
+#include <stdarg.h>
 #include <string.h>
 
 #include "xmalloc.h"
index 7a496dff8c6883ef80bb999236fb499ed692b770..4751ea295ff2fb6a00e7c08fa459bb5fd4a91817 100644 (file)
 #include "includes.h"
 #if defined(SMARTCARD) && defined(USE_OPENSC)
 
+#include <sys/types.h>
+
 #include <openssl/evp.h>
 #include <openssl/x509.h>
 
+#include <stdarg.h>
+
 #include <opensc/opensc.h>
 #include <opensc/pkcs15.h>
 
diff --git a/scard.c b/scard.c
index a2d28cba18789137e2962bf52c9f7ac14f93aacf..328655eddb1c5a0bf4856717e4caf55e3acac76f 100644 (file)
--- a/scard.c
+++ b/scard.c
@@ -29,6 +29,7 @@
 #include <sys/types.h>
 
 #include <sectok.h>
+#include <stdarg.h>
 #include <string.h>
 
 #include <openssl/evp.h>
index 006e4304d6f87abbc6d751921a5b993ef5949ae1..15c5ca9a02acf293f4bd53e3d9c94a77c0faa7b9 100644 (file)
--- a/session.c
+++ b/session.c
@@ -53,6 +53,7 @@
 #endif
 #include <pwd.h>
 #include <signal.h>
+#include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 518f47066a0909dce6e6a864638a930875131662..4dc46f6db6ef5c7dbb75d9a8d1fb2fda68f09b94 100644 (file)
--- a/ssh-add.c
+++ b/ssh-add.c
@@ -45,6 +45,7 @@
 
 #include <fcntl.h>
 #include <pwd.h>
+#include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 6bc1e541ae9f1f145d34b7f4a24f3167acfff429..08b07212e048b3ac84c0a2b1ea4e5bf615a9e52a 100644 (file)
@@ -58,6 +58,7 @@
 # include <paths.h>
 #endif
 #include <signal.h>
+#include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <time.h>
index 448f704f62f8d3d3b58b6258fb06c9026a0e97b0..fbc078e84dc89a749aeb3b1a37550fb1bddea9db 100644 (file)
--- a/ssh-dss.c
+++ b/ssh-dss.c
@@ -30,6 +30,7 @@
 #include <openssl/bn.h>
 #include <openssl/evp.h>
 
+#include <stdarg.h>
 #include <string.h>
 
 #include "xmalloc.h"
index c607e257e55a8ee44021973cc2a7bdc30bd68fa7..969bd235905cc56b1c305137833e514c54094402 100644 (file)
@@ -29,6 +29,7 @@
 # include <paths.h>
 #endif
 #include <pwd.h>
+#include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 1ddb2a058bd30be7e7fd9d3727e29859a637a515..c4bc7e56e56fa839eb87bb6dd1f3ea7bf04df268 100644 (file)
@@ -30,6 +30,7 @@
 #include <paths.h>
 #endif
 #include <pwd.h>
+#include <stdarg.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
index 28444c1f9775ae2113eacaeb66d76d8be957635e..0e16ff85f1d6f024273e22db89e04dbac6e52f1c 100644 (file)
--- a/ssh-rsa.c
+++ b/ssh-rsa.c
@@ -22,6 +22,7 @@
 #include <openssl/evp.h>
 #include <openssl/err.h>
 
+#include <stdarg.h>
 #include <string.h>
 
 #include "xmalloc.h"
diff --git a/ssh.c b/ssh.c
index 07a4ca3c86d5b526ad408be823f5644b4c4fa9fd..a34990b54c878b87c0e94a65a051b20c33d83c85 100644 (file)
--- a/ssh.c
+++ b/ssh.c
@@ -60,6 +60,7 @@
 #endif
 #include <pwd.h>
 #include <signal.h>
+#include <stdarg.h>
 #include <stddef.h>
 #include <stdio.h>
 #include <stdlib.h>
index 71ca4ec52c4312c1b8157d6e456c958b07abcdae..823def6a9f020d4acc32f3deaa9fd80b008dd14c 100644 (file)
@@ -32,6 +32,7 @@
 #include <paths.h>
 #endif
 #include <pwd.h>
+#include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 51f1f8088fcbae3e6e6791dedbaacbd742703569..90fcb344fc4f62020a132c1eb01a0cb91cc61dca 100644 (file)
@@ -21,6 +21,7 @@
 #include <openssl/bn.h>
 #include <openssl/md5.h>
 
+#include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 5846c8e9ce4899b96e5f096ff61c242a3cb6e203..dd971a9f9bb4343dd6fc3f0fb13063c9150647ee 100644 (file)
@@ -33,6 +33,7 @@
 #include <errno.h>
 #include <pwd.h>
 #include <signal.h>
+#include <stdarg.h>
 #include <stdio.h>
 #include <string.h>
 #include <unistd.h>
diff --git a/sshd.c b/sshd.c
index ee588ff8a51d023338112a83620b62267243b918..3fb14642482c8641e8bd6ce9874da23e490f7feb 100644 (file)
--- a/sshd.c
+++ b/sshd.c
@@ -65,6 +65,7 @@
 #include <grp.h>
 #include <pwd.h>
 #include <signal.h>
+#include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
This page took 0.136948 seconds and 5 git commands to generate.