1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Fix compilation on 64bit archs.

This commit is contained in:
Munechika SUMIKAWA 2006-08-21 05:56:16 +00:00
parent edf8bebd03
commit 99124175f2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=171079

View File

@ -0,0 +1,18 @@
--- lib/if_spmd.c.orig Wed Nov 16 09:34:30 2005
+++ lib/if_spmd.c Mon Aug 21 14:49:19 2006
@@ -1,4 +1,4 @@
-/* $Id: if_spmd.c,v 1.23 2005/11/16 00:34:30 kamada Exp $ */
+/* $Id: if_spmd.c,v 1.24 2006/07/25 10:48:45 fukumoto Exp $ */
/*
* Copyright (C) 2003, 2004 WIDE Project.
* All rights reserved.
@@ -940,7 +940,8 @@
{
unsigned char md[EVP_MAX_MD_SIZE];
EVP_MD_CTX ctx;
- size_t hash_len, md_len;
+ size_t hash_len;
+ unsigned int md_len;
int error, used, i;
char *p;