~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzlebinlog.cc

  • Committer: Monty Taylor
  • Date: 2008-07-29 19:45:49 UTC
  • mfrom: (212.5.34 remove-include-dir)
  • mto: This revision was merged to the branch mainline in revision 236.
  • Revision ID: monty@inaugust.com-20080729194549-1455h4t2fh40s92z
Merged remove-include-dir.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
#define MYSQL_CLIENT
32
32
#undef MYSQL_SERVER
33
 
#include <my_time.h>
 
33
#include <libdrizzle/my_time.h>
34
34
#include <my_global.h>
35
35
#include <mysys/my_sys.h>
36
36
#include <mystrings/m_string.h>
37
 
#include <drizzle.h>
 
37
#include <libdrizzle/drizzle.h>
38
38
#include <errmsg.h>
39
39
#include <mysys/my_getopt.h>
40
40
/* That one is necessary for defines of OPTION_NO_FOREIGN_KEY_CHECKS etc */
41
41
#include "mysql_priv.h"
42
42
#include "log_event.h"
43
 
#include "sql_common.h"
 
43
#include <libdrizzle/sql_common.h>
44
44
 
45
45
 
46
46
enum options_drizzlebinlog
71
71
 
72
72
static const char *load_default_groups[]= { "drizzlebinlog","client",0 };
73
73
 
74
 
static void error(const char *format, ...) ATTRIBUTE_FORMAT(printf, 1, 2);
75
 
static void warning(const char *format, ...) ATTRIBUTE_FORMAT(printf, 1, 2);
 
74
static void error(const char *format, ...) __attribute__((format(printf, 1, 2)));
 
75
static void warning(const char *format, ...) __attribute__((format(printf, 1, 2)));
76
76
 
77
77
static bool one_database=0, to_last_remote_log= 0, disable_log_bin= 0;
78
78
static bool opt_hexdump= 0;