]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/lib/message.h
- Add code to ensure that reserved but unused volumes
[bacula/bacula] / bacula / src / lib / message.h
index 5c70ec0266253228f3ee2f0c7b9bd43a9f9baf91..677efbb9c2cf9039076abd937064dd1a05f173af 100644 (file)
@@ -40,7 +40,7 @@
 #undef  M_ALERT
 
 /*
- * Most of these message levels are more or less obvious. 
+ * Most of these message levels are more or less obvious.
  * They have evolved somewhat during the development of Bacula,
  * and here are some of the details of where I am trying to
  * head (in the process of changing the code) as of 15 June 2002.
@@ -57,7 +57,7 @@
  *  M_FATAL       Bacula detected a fatal Job error. The Job will be killed,
  *                  but Bacula continues running.
  *  M_ERROR       Bacula detected a Job error. The Job will continue running
- *                  but the termination status will be error. 
+ *                  but the termination status will be error.
  *  M_WARNING     Job warning message.
  *  M_INFO        Job information message.
  *
@@ -120,14 +120,14 @@ typedef struct s_dest {
 struct MQUEUE_ITEM {
    dlink link;
    int type;
-   int level;
+   time_t mtime;
    char msg[1];
 };
 
 
 void d_msg(const char *file, int line, int level, const char *fmt,...);
 void e_msg(const char *file, int line, int type, int level, const char *fmt,...);
-void Jmsg(JCR *jcr, int type, int level, const char *fmt,...);
+void Jmsg(JCR *jcr, int type, time_t mtime, const char *fmt,...);
 
 extern int debug_level;
 extern int verbose;