--- io/hpmud/hpmud.c.orig	2010-12-19 22:14:52.000000000 +0100
+++ io/hpmud/hpmud.c	2010-12-19 22:14:19.000000000 +0100
@@ -34,7 +34,7 @@
 /*
  * sysdump() originally came from http://sws.dett.de/mini/hexdump-c , steffen@dett.de .  
  */
-void __attribute__ ((visibility ("hidden"))) sysdump(const void *data, int size)
+void __attribute__ ((visibility ("hidden"))) sysdumpr(const void *data, int size)
 {
     /* Dump size bytes of *data. Output looks like:
      * [0000] 75 6E 6B 6E 6F 77 6E 20 30 FF 00 00 00 00 39 00 unknown 0.....9.
--- io/hpmud/hpmudi.h.orig	2010-12-19 22:15:45.000000000 +0100
+++ io/hpmud/hpmudi.h	2010-12-19 22:16:07.000000000 +0100
@@ -68,7 +68,7 @@
 #ifdef HPMUD_DEBUG
    #define DBG(args...) syslog(LOG_INFO, __FILE__ " " STRINGIZE(__LINE__) ": " args)
 // #define DBG(args...) fprintf(stderr, __FILE__ " " STRINGIZE(__LINE__) ": " args)
-   #define DBG_DUMP(data, size) sysdump((data), (size))
+   #define DBG_DUMP(data, size) sysdumpr((data), (size))
    #define DBG_SZ(args...) syslog(LOG_INFO, args)
 #else
    #define DBG(args...)
@@ -197,7 +197,7 @@
 
 extern mud_session *msp __attribute__ ((visibility ("hidden")));
 
-void __attribute__ ((visibility ("hidden"))) sysdump(const void *data, int size);
+void __attribute__ ((visibility ("hidden"))) sysdumpr(const void *data, int size);
 int __attribute__ ((visibility ("hidden"))) mm_device_lock(int fd, HPMUD_DEVICE index);
 int __attribute__ ((visibility ("hidden"))) mm_device_unlock(int fd, HPMUD_DEVICE index);
 int __attribute__ ((visibility ("hidden"))) mm_device_trylock(int fd, HPMUD_DEVICE index);

