]> git.sur5r.net Git - bacula/bacula/commitdiff
MySQL compilation fix
authorEric Bollengier <eric@eb.homelinux.org>
Thu, 6 May 2010 09:50:04 +0000 (11:50 +0200)
committerEric Bollengier <eric@eb.homelinux.org>
Mon, 2 Aug 2010 14:53:47 +0000 (16:53 +0200)
bacula/src/cats/mysql.c

index 555bbf9cc02ec6aeea85389433468938b474a4ef..bc61067b5f0a1e07f6518529e7e7ed41767eb7bc 100644 (file)
@@ -322,7 +322,7 @@ int db_next_index(JCR *jcr, B_DB *mdb, char *table, char *index)
  * Memory is stored in B_DB struct, no need to free it
  */
 char *
-db_escape_object(JCR *jcr, B_DB *db, char *old, int len)
+db_escape_object(JCR *jcr, B_DB *mdb, char *old, int len)
 {
    mdb->esc_obj = check_pool_memory_size(mdb->esc_obj, len*2+1);
    mysql_real_escape_string(mdb->db, mdb->esc_obj, old, len);