From 923ee10eefc894725e74aefa4ba3ff72f865ccdd Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Tue, 31 Oct 2006 23:17:21 +0000 Subject: solved 64 bit issue in push/pop stroke interface --- src/starter/starterstroke.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/starter') diff --git a/src/starter/starterstroke.c b/src/starter/starterstroke.c index aae8d5b59..cde9567e8 100644 --- a/src/starter/starterstroke.c +++ b/src/starter/starterstroke.c @@ -64,7 +64,7 @@ enum auth_method_t { static char* push_string(stroke_msg_t *msg, char *string) { - u_int string_start = msg->length; + unsigned long string_start = msg->length; if (string == NULL || msg->length + strlen(string) >= sizeof(stroke_msg_t)) { -- cgit v1.2.3