[23366] in Source-Commits
/svn/athena r23020 - in trunk/athena/bin/discuss: debian usp
daemon@ATHENA.MIT.EDU (ghudson@MIT.EDU)
Wed Jun 11 16:31:31 2008
Date: Wed, 11 Jun 2008 16:30:48 -0400 (EDT)
From: ghudson@MIT.EDU
Message-Id: <200806112030.QAA29510@drugstore.mit.edu>
To: source-commits@MIT.EDU
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: ghudson
Date: 2008-06-11 16:30:48 -0400 (Wed, 11 Jun 2008)
New Revision: 23020
Modified:
trunk/athena/bin/discuss/debian/changelog
trunk/athena/bin/discuss/usp/usp.h
Log:
In discuss:
* Stop assuming that long is 32 bits.
* Start assuming that int is 32 bits.
Modified: trunk/athena/bin/discuss/debian/changelog
===================================================================
--- trunk/athena/bin/discuss/debian/changelog 2008-06-11 17:55:01 UTC (rev 23019)
+++ trunk/athena/bin/discuss/debian/changelog 2008-06-11 20:30:48 UTC (rev 23020)
@@ -1,3 +1,10 @@
+debathena-discuss (10.0.2-0debathena1) unstable; urgency=low
+
+ * Stop assuming that long is 32 bits.
+ * Start assuming that int is 32 bits.
+
+ -- Greg Hudson <ghudson@mit.edu> Wed, 11 Jun 2008 16:29:35 -0400
+
debathena-discuss (10.0.1-0debathena1) unstable; urgency=low
* Fix obsolete names for Kerberos library functions, which no longer
Modified: trunk/athena/bin/discuss/usp/usp.h
===================================================================
--- trunk/athena/bin/discuss/usp/usp.h 2008-06-11 17:55:01 UTC (rev 23019)
+++ trunk/athena/bin/discuss/usp/usp.h 2008-06-11 20:30:48 UTC (rev 23020)
@@ -56,8 +56,8 @@
typedef unsigned short USPBoolean;
typedef short USPInteger;
typedef unsigned short USPCardinal;
-typedef long USPLong_integer;
-typedef unsigned long USPLong_cardinal;
+typedef int USPLong_integer;
+typedef unsigned int USPLong_cardinal;
typedef char *USPString;
typedef struct {