]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl PQerrorMessage add a \n at the end of the message
authorEric Bollengier <eric@eb.homelinux.org>
Thu, 18 Oct 2007 19:29:42 +0000 (19:29 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Thu, 18 Oct 2007 19:29:42 +0000 (19:29 +0000)
     so i have removed the extra one

     Add error message handling to start_batch

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5756 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/cats/postgresql.c

index 5f3d5bcb882869a2b392673cab803fb82b61b55b..733074e27903131d412f1914167146fdc2f64bd3 100644 (file)
@@ -666,6 +666,7 @@ int my_postgresql_batch_start(JCR *jcr, B_DB *mdb)
    return mdb->status;
 
 bail_out:
+   Mmsg1(&mdb->errmsg, _("error starting batch mode: %s"), PQerrorMessage(mdb->db));
    mdb->status = 0;
    PQclear(mdb->result);
    mdb->result = NULL;
@@ -695,7 +696,7 @@ int my_postgresql_batch_end(JCR *jcr, B_DB *mdb, const char *error)
    if (res <= 0) {
       Dmsg0(500, "we failed\n");
       mdb->status = 0;
-      Mmsg1(&mdb->errmsg, _("error ending batch mode: %s\n"), PQerrorMessage(mdb->db));
+      Mmsg1(&mdb->errmsg, _("error ending batch mode: %s"), PQerrorMessage(mdb->db));
    }
    
    Dmsg0(500, "my_postgresql_batch_end finishing\n");
@@ -742,7 +743,7 @@ int my_postgresql_batch_insert(JCR *jcr, B_DB *mdb, ATTR_DBR *ar)
    if (res <= 0) {
       Dmsg0(500, "we failed\n");
       mdb->status = 0;
-      Mmsg1(&mdb->errmsg, _("error ending batch mode: %s\n"), PQerrorMessage(mdb->db));
+      Mmsg1(&mdb->errmsg, _("error ending batch mode: %s"), PQerrorMessage(mdb->db));
    }
 
    Dmsg0(500, "my_postgresql_batch_insert finishing\n");