Skip to content

Commit

Permalink
sql errno fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jsuto committed Jul 10, 2014
1 parent 0ff5ab9 commit 8b9ea09
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
3 changes: 2 additions & 1 deletion src/defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#ifdef NEED_MYSQL
#include <mysql.h>
#include <mysqld_error.h>
#endif
#ifdef NEED_PSQL
#include <libpq-fe.h>
Expand Down Expand Up @@ -211,9 +212,9 @@ struct session_data {
char ms_journal;
char import;
int journal_envelope_length, journal_bottom_length;
unsigned int sql_errno;
#ifdef NEED_MYSQL
MYSQL mysql;
unsigned int mysql_errno;
#endif
#ifdef NEED_PSQL
PGconn *psql;
Expand Down
2 changes: 1 addition & 1 deletion src/message.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ int store_recipients(struct session_data *sdata, struct __data *data, char *to,


if(p_exec_query(sdata, data->stmt_insert_into_rcpt_table, data) == ERR){
ret = ERR;
if(sdata->sql_errno != ER_DUP_ENTRY) ret = ERR;
}
else n++;
}
Expand Down
4 changes: 1 addition & 3 deletions src/misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -510,9 +510,7 @@ void init_session_data(struct session_data *sdata, struct __config *cfg){
time(&(sdata->now));
sdata->sent = sdata->delivered = sdata->retained = sdata->now;

#ifdef NEED_MYSQL
sdata->mysql_errno = 0;
#endif
sdata->sql_errno = 0;

#ifdef HAVE_TWEAK_SENT_TIME
sdata->sent += cfg->tweak_sent_time_offset;
Expand Down
10 changes: 5 additions & 5 deletions src/mysql.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ int p_exec_query(struct session_data *sdata, MYSQL_STMT *stmt, struct __data *da
unsigned long length[MAX_SQL_VARS];
int i, ret=ERR;

sdata->mysql_errno = 0;
sdata->sql_errno = 0;
memset(bind, 0, sizeof(bind));

for(i=0; i<MAX_SQL_VARS; i++){
Expand Down Expand Up @@ -106,14 +106,14 @@ int p_exec_query(struct session_data *sdata, MYSQL_STMT *stmt, struct __data *da
}

if(mysql_stmt_bind_param(stmt, bind)){
sdata->mysql_errno = mysql_stmt_errno(stmt);
syslog(LOG_PRIORITY, "%s: mysql_stmt_bind_param() error: %s (errno: %d)", sdata->ttmpfile, mysql_stmt_error(stmt), sdata->mysql_errno);
sdata->sql_errno = mysql_stmt_errno(stmt);
syslog(LOG_PRIORITY, "%s: mysql_stmt_bind_param() error: %s (errno: %d)", sdata->ttmpfile, mysql_stmt_error(stmt), sdata->sql_errno);
goto CLOSE;
}

if(mysql_stmt_execute(stmt)){
sdata->mysql_errno = mysql_stmt_errno(stmt);
syslog(LOG_PRIORITY, "%s: mysql_stmt_execute error: *%s* (errno: %d)", sdata->ttmpfile, mysql_error(&(sdata->mysql)), sdata->mysql_errno);
sdata->sql_errno = mysql_stmt_errno(stmt);
syslog(LOG_PRIORITY, "%s: mysql_stmt_execute error: *%s* (errno: %d)", sdata->ttmpfile, mysql_error(&(sdata->mysql)), sdata->sql_errno);
goto CLOSE;
}

Expand Down

0 comments on commit 8b9ea09

Please sign in to comment.