~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libmysql/net_serv.c

  • Committer: Brian Aker
  • Date: 2008-07-02 21:06:07 UTC
  • Revision ID: brian@tangent.org-20080702210607-4km33ignhltocddd
Removed old instance manager variables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
*/
59
59
extern uint test_flags;
60
60
extern ulong bytes_sent, bytes_received, net_big_packet_count;
61
 
#ifndef MYSQL_INSTANCE_MANAGER
62
61
#define update_statistics(A) A
63
 
#endif /* MYSQL_INSTANCE_MANGER */
64
 
#endif /* defined(MYSQL_SERVER) && !defined(MYSQL_INSTANCE_MANAGER) */
 
62
#endif /* defined(MYSQL_SERVER) */
65
63
 
66
 
#if !defined(MYSQL_SERVER) || defined(MYSQL_INSTANCE_MANAGER)
 
64
#if !defined(MYSQL_SERVER)
67
65
#define update_statistics(A)
68
66
#define thd_increment_bytes_sent(N)
69
67
#endif