]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix and add ASSERT debug
authorKern Sibbald <kern@sibbald.com>
Thu, 10 Dec 2009 09:33:51 +0000 (10:33 +0100)
committerKern Sibbald <kern@sibbald.com>
Thu, 10 Dec 2009 09:33:51 +0000 (10:33 +0100)
bacula/src/baconfig.h
bacula/src/lib/lockmgr.c

index 9ccd01f2866734adba5e006f96f40fcb948c7f9e..657830a09c467eb75e7c8b0224fbed81281f8634 100644 (file)
@@ -65,6 +65,7 @@
 #define ASSERT(x) if (!(x)) { \
    char *jcr = NULL; \
    Emsg1(M_ERROR, 0, _("Failed ASSERT: %s\n"), #x); \
+   Pmsg1(000, _("Failed ASSERT: %s\n"), #x); \
    jcr[0] = 0; }
 #else
 #define ASSERT(x)
index 11d83fa293968a67f7ebdc8e0f94e261da215d91..19db323fcdc5bfe7a69befb042260bc24ac3ce1d 100644 (file)
 #undef ASSERT
 #define ASSERT(x) if (!(x)) { \
    char *jcr = NULL; \
-   Pmsg3(000, _("Failed ASSERT: %s\n"), __FILE__, __LINE__, #x); \
+   Pmsg3(000, _("ASSERT failed at %s:%i: %s\n"), __FILE__, __LINE__, #x); \
    jcr[0] = 0; }
 
 #define ASSERT_p(x,f,l) if (!(x)) {              \
    char *jcr = NULL; \
-   Pmsg3(000, _("from %s:%i Failed ASSERT: %s\n"), f, l, #x); \
+   Pmsg3(000, _("ASSERT failed at %s:%i: %s \n"), f, l, #x); \
    jcr[0] = 0; }
 
 /*