]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Use PQerrorMessage instead of PQresultErrorMessage in postgresql
authorEric Bollengier <eric@eb.homelinux.org>
Thu, 18 Oct 2007 21:00:14 +0000 (21:00 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Thu, 18 Oct 2007 21:00:14 +0000 (21:00 +0000)
     backend (sql_strerror). Fixe bug #989

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

bacula/src/cats/cats.h
bacula/technotes-2.3

index f774612a2302d80925011c9720f4e18e4cf0c077..e39962430790794c89a1825576a32e2347a1bf28 100644 (file)
@@ -498,7 +498,7 @@ extern const char* my_pg_batch_fill_path_query;
 #define sql_fetch_row(x)      my_postgresql_fetch_row(x)
 #define sql_query(x, y)       my_postgresql_query((x), (y))
 #define sql_close(x)          PQfinish((x)->db)
-#define sql_strerror(x)       PQresultErrorMessage((x)->result)
+#define sql_strerror(x)       PQerrorMessage((x)->db)
 #define sql_num_rows(x)       ((unsigned) PQntuples((x)->result))
 #define sql_data_seek(x, i)   my_postgresql_data_seek((x), (i))
 #define sql_affected_rows(x)  ((unsigned) atoi(PQcmdTuples((x)->result)))
index 200d24e750cd13d422b3aca491e0fcfc4fdeab86..71277ab32ae748e5716590d978047e8815f262fa 100644 (file)
@@ -1,6 +1,9 @@
               Technical notes on version 2.3
 
 General:
+18Oct07
+ebl  Use PQerrorMessage instead of PQresultErrorMessage in postgresql
+     backend (sql_strerror). Fixe bug #989
 16Oct07
 kes  Add PATH command to SunOS part of mtx-changer.in so that sed and
      awk are on the path.