]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
Make this work on sparc64 (don't use long and assume sizeof(long) = 4).
authorjdc <jdc@NetBSD.org>
Wed, 26 Feb 2003 07:14:44 +0000 (07:14 +0000)
committerjdc <jdc@NetBSD.org>
Wed, 26 Feb 2003 07:14:44 +0000 (07:14 +0000)
Tested against a LE32 system (arm).

hunt/hunt/playit.c
hunt/huntd/answer.c

index 381ef1303922ba02f7815642fd11515d3a764ced..87de7825964fbcc974dfac92dd1b7a60a6279a5b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: playit.c,v 1.5 2002/09/20 15:47:19 mycroft Exp $       */
+/*     $NetBSD: playit.c,v 1.6 2003/02/26 07:14:44 jdc Exp $   */
 /*
  *  Hunt
  *  Copyright (c) 1985 Conrad C. Huang, Gregory S. Couch, Kenneth C.R.C. Arnold
@@ -7,7 +7,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: playit.c,v 1.5 2002/09/20 15:47:19 mycroft Exp $");
+__RCSID("$NetBSD: playit.c,v 1.6 2003/02/26 07:14:44 jdc Exp $");
 #endif /* not lint */
 
 # include      <sys/file.h>
@@ -82,7 +82,7 @@ playit()
 {
        int             ch;
        int             y, x;
-       long            version;
+       u_int32_t       version;
 
        if (read(Socket, (char *) &version, LONGLEN) != LONGLEN) {
                bad_con();
@@ -617,7 +617,7 @@ redraw_screen()
 void
 do_message()
 {
-       long    version;
+       u_int32_t       version;
 
        if (read(Socket, (char *) &version, LONGLEN) != LONGLEN) {
                bad_con();
index 832f74cc517b24830ef44b307c93e643eb102d1a..05ff67f44676479509ad201e763074956f4bd2fb 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: answer.c,v 1.4 2002/09/20 20:54:16 mycroft Exp $       */
+/*     $NetBSD: answer.c,v 1.5 2003/02/26 07:14:45 jdc Exp $   */
 /*
  *  Hunt
  *  Copyright (c) 1985 Conrad C. Huang, Gregory S. Couch, Kenneth C.R.C. Arnold
@@ -7,7 +7,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: answer.c,v 1.4 2002/09/20 20:54:16 mycroft Exp $");
+__RCSID("$NetBSD: answer.c,v 1.5 2003/02/26 07:14:45 jdc Exp $");
 #endif /* not lint */
 
 # include      <ctype.h>
@@ -32,11 +32,11 @@ answer()
        static int              enter_status;
        static int              socklen;
        static u_long           machine;
-       static u_long           uid;
+       static u_int32_t        uid;
        static SOCKET           sockstruct;
        char                    *cp1, *cp2;
        int                     flags;
-       long                    version;
+       u_int32_t               version;
        int                     i;
 
 # ifdef INTERNET