summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-02-25 10:22:35 +1100
committerDamien Miller <djm@mindrot.org>2003-02-25 10:22:35 +1100
commitca49a977888c5a318c55749fd6e1d3a9efe4b0bf (patch)
treede9593941efaa65f10d72b16ed02136be302cb6f
parentfe1f14375a6a739fa662b4a9d5e9744bff9716eb (diff)
- (djm) Fix some compile errors spotted by dtucker and his fabulous
tinderbox
-rw-r--r--ChangeLog6
-rw-r--r--Makefile.in4
-rw-r--r--crc32.c3
3 files changed, 8 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index b99e2bb98..41c66dbd3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120030225
2 - (djm) Fix some compile errors spotted by dtucker and his fabulous
3 tinderbox
4
120030224 520030224
2 - (djm) Tweak gnome-ssh-askpass2: 6 - (djm) Tweak gnome-ssh-askpass2:
3 - Retry kb and mouse grab a couple of times, so passphrase dialog doesn't 7 - Retry kb and mouse grab a couple of times, so passphrase dialog doesn't
@@ -1187,4 +1191,4 @@
1187 save auth method before monitor_reset_key_state(); bugzilla bug #284; 1191 save auth method before monitor_reset_key_state(); bugzilla bug #284;
1188 ok provos@ 1192 ok provos@
1189 1193
1190$Id: ChangeLog,v 1.2621 2003/02/24 04:45:42 djm Exp $ 1194$Id: ChangeLog,v 1.2622 2003/02/24 23:22:35 djm Exp $
diff --git a/Makefile.in b/Makefile.in
index 276af9870..350b417f1 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.226 2003/02/24 01:18:47 djm Exp $ 1# $Id: Makefile.in,v 1.227 2003/02/24 23:22:36 djm Exp $
2 2
3# uncomment if you run a non bourne compatable shell. Ie. csh 3# uncomment if you run a non bourne compatable shell. Ie. csh
4#SHELL = @SH@ 4#SHELL = @SH@
@@ -83,7 +83,7 @@ SSHDOBJS=sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o \
83 monitor_mm.o monitor.o monitor_wrap.o monitor_fdpass.o \ 83 monitor_mm.o monitor.o monitor_wrap.o monitor_fdpass.o \
84 kexdhs.o kexgexs.o \ 84 kexdhs.o kexgexs.o \
85 auth-krb5.o auth-krb4.o \ 85 auth-krb5.o auth-krb4.o \
86 loginrec.o auth-pam.o auth-sia.o md5crypt.o 86 loginrec.o auth-pam.o auth2-pam.o auth-sia.o md5crypt.o
87 87
88MANPAGES = scp.1.out ssh-add.1.out ssh-agent.1.out ssh-keygen.1.out ssh-keyscan.1.out ssh.1.out sshd.8.out sftp-server.8.out sftp.1.out ssh-rand-helper.8.out ssh-keysign.8.out sshd_config.5.out ssh_config.5.out 88MANPAGES = scp.1.out ssh-add.1.out ssh-agent.1.out ssh-keygen.1.out ssh-keyscan.1.out ssh.1.out sshd.8.out sftp-server.8.out sftp.1.out ssh-rand-helper.8.out ssh-keysign.8.out sshd_config.5.out ssh_config.5.out
89MANPAGES_IN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1 ssh-rand-helper.8 ssh-keysign.8 sshd_config.5 ssh_config.5 89MANPAGES_IN = scp.1 ssh-add.1 ssh-agent.1 ssh-keygen.1 ssh-keyscan.1 ssh.1 sshd.8 sftp-server.8 sftp.1 ssh-rand-helper.8 ssh-keysign.8 sshd_config.5 ssh_config.5
diff --git a/crc32.c b/crc32.c
index 89c808a8d..ac627b57a 100644
--- a/crc32.c
+++ b/crc32.c
@@ -23,8 +23,7 @@
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26#include "includes.h"
27#include <sys/types.h>
28#include "crc32.h" 27#include "crc32.h"
29 28
30static const u_int32_t crc32tab[] = { 29static const u_int32_t crc32tab[] = {