]> andersk Git - moira.git/blobdiff - server/mr_util.c
Build shared libmoira via libtool.
[moira.git] / server / mr_util.c
index 8ca04ff35f3dd4baabf95ff77fc50764cb4d9b04..2762bd702b938bd302bbccd628ee899a10104b51 100644 (file)
@@ -152,7 +152,7 @@ void *xmalloc(size_t bytes)
   if (buf)
     return buf;
 
-  critical_alert("moirad", "Out of memory");
+  critical_alert(whoami, "moirad", "Out of memory");
   exit(1);
 }
 
@@ -163,7 +163,7 @@ void *xrealloc(void *ptr, size_t bytes)
   if (buf)
     return buf;
 
-  critical_alert("moirad", "Out of memory");
+  critical_alert(whoami, "moirad", "Out of memory");
   exit(1);
 }
 
@@ -174,6 +174,6 @@ char *xstrdup(char *str)
   if (buf)
     return buf;
 
-  critical_alert("moirad", "Out of memory");
+  critical_alert(whoami, "moirad", "Out of memory");
   exit(1);
 }
This page took 0.035888 seconds and 4 git commands to generate.