~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/syslog/module.cc

  • Committer: Brian Aker
  • Date: 2010-10-31 23:41:31 UTC
  • mfrom: (1892.2.1 lintian-warnings)
  • Revision ID: brian@tangent.org-20101031234131-0y4fjb56c8tm95ra
Merge Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
    if (sysvar_logging_threshold_slow > ULONG_MAX)
60
60
    {
61
61
      errmsg_printf(ERRMSG_LVL_ERROR, _("Invalid value for logging-threshold-slow\n"));
62
 
      exit(-1);
 
62
      return 1;
63
63
    }
64
64
  }
65
65
 
68
68
    if (sysvar_logging_threshold_big_resultset > 2)
69
69
    {
70
70
      errmsg_printf(ERRMSG_LVL_ERROR, _("Invalid value for logging-threshold-big-resultset\n"));
71
 
      exit(-1);
 
71
      return 1;
72
72
    }
73
73
  }
74
74
 
77
77
    if (sysvar_logging_threshold_big_examined > 2)
78
78
    {
79
79
      errmsg_printf(ERRMSG_LVL_ERROR, _("Invalid value for logging-threshold-big-examined\n"));
80
 
      exit(-1);
 
80
      return 1;
81
81
    }
82
82
  }
83
83