Date: Sat Apr 26 13:10:59 CEST 2003
User: Derick Rethans
Directory: srm/test/serialize
Log Message:
[0.25]
- Fix 64bit issues on Tru64 Unix
Modified files:
srm/srm.ini (version: 1.32)
srm/main/src/srm_modules.c (version: 1.71)
srm/test/serialize/serialize.c (version: 1.25)
[FILE: /srm/srm.ini]
--- srm/srm.ini:1.31 Thu Feb 20 19:33:25 2003 GMT
+++ srm/srm.ini Sat Apr 26 09:10:57 2003 GMT
@@ -19,7 +19,7 @@
modules {
path = "/usr/local/srm/lib/";
- load "auth";
+# load "auth";
# load "http";
# load "php4";
}
[FILE: /srm/main/src/srm_modules.c]
--- srm/main/src/srm_modules.c:1.70 Thu Mar 13 20:54:14 2003 GMT
+++ srm/main/src/srm_modules.c Sat Apr 26 09:10:58 2003 GMT
@@ -1,4 +1,4 @@
-/* $Id: cvstemp,v 1.70 2003/03/13 21:54:14 derick Exp $ */
+/* $Id: cvstemp,v 1.71 2003/04/26 11:10:58 derick Exp $ */
/* The contents of this file are subject to the Vulcan Logic Public
* License Version 1.1 (the "License"); you may not use this file
@@ -138,7 +138,7 @@
srm_fmt_message(LL_INFO, "Module", "Description: %s", module_entry->info.description);
srm_fmt_message(LL_INFO, "Module", "SRM API version: %d", module_entry->info.api_version);
if (module_entry->thread) {
- srm_fmt_message(LL_INFO, "Thread", "Module thread number: %d", (int) module_entry->thread);
+ srm_fmt_message(LL_INFO, "Thread", "Module thread number: %p", module_entry->thread);
}
}
[FILE: /srm/test/serialize/serialize.c]
--- srm/test/serialize/serialize.c:1.24 Thu Mar 13 21:00:02 2003 GMT
+++ srm/test/serialize/serialize.c Sat Apr 26 09:10:59 2003 GMT
@@ -1,4 +1,4 @@
-/* $Id: cvstemp,v 1.24 2003/03/13 22:00:02 derick Exp $ */
+/* $Id: cvstemp,v 1.25 2003/04/26 11:10:59 derick Exp $ */
/* The contents of this file are subject to the Vulcan Logic Public
* License Version 1.1 (the "License"); you may not use this file
@@ -32,7 +32,7 @@
{
int i;
- printf ("@%08X length: %d\n", (int) var, length);
+ printf ("@%p length: %d\n", var, length);
for (i = 0; i < length; i++)
{
printf ("%02X ", var[i]);
Received on Sat Apr 26 13:11:10 2003
This archive was generated by hypermail 2.1.8 : Tue Jan 06 2009 - 09:00:03 CET