~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Monty Taylor
  • Date: 2009-02-21 01:15:13 UTC
  • mto: (892.1.5 devel)
  • mto: This revision was merged to the branch mainline in revision 898.
  • Revision ID: mordred@inaugust.com-20090221011513-c3jq8dfaiboc64cl
More solaris warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
303
303
uint32_t volatile thread_count, thread_running;
304
304
uint64_t session_startup_options;
305
305
uint32_t back_log;
306
 
uint64_t connect_timeout;
 
306
uint32_t connect_timeout;
307
307
uint32_t server_id;
308
308
uint64_t table_cache_size;
309
309
uint64_t table_def_size;
2752
2752
    N_("The number of seconds the drizzled server is waiting for a connect "
2753
2753
       "packet before responding with 'Bad handshake'."),
2754
2754
    (char**) &connect_timeout, (char**) &connect_timeout,
2755
 
    0, GET_ULL, REQUIRED_ARG, CONNECT_TIMEOUT, 2, LONG_TIMEOUT, 0, 1, 0 },
 
2755
    0, GET_ULONG, REQUIRED_ARG, CONNECT_TIMEOUT, 2, LONG_TIMEOUT, 0, 1, 0 },
2756
2756
  { "date_format", OPT_DATE_FORMAT,
2757
2757
    N_("The DATE format (For future)."),
2758
2758
    (char**) &opt_date_time_formats[DRIZZLE_TIMESTAMP_DATE],