~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/logging_query/logging_query.cc

  • Committer: Eric Herman
  • Date: 2008-12-06 19:42:46 UTC
  • mto: (656.1.6 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: eric@mysql.com-20081206194246-5cdexuu81i366eek
removed trailing whitespace with simple script:

for file in $(find . -name "*.c") $(find . -name "*.cc") $(find . -name "*.h"); do ruby -pe 'gsub(/\s+$/, $/)' < $file > $file.out; mv $file.out $file; done;

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
};
61
61
 
62
62
 
63
 
/* stolen from mysys/my_getsystime 
 
63
/* stolen from mysys/my_getsystime
64
64
   until the Session has a good utime "now" we can use
65
65
   will have to use this instead */
66
66
 
150
150
  if (logging_query_filename == NULL)
151
151
  {
152
152
    /* no destination filename was specified via system variables
153
 
       return now, dont set the callback pointers 
 
153
       return now, dont set the callback pointers
154
154
    */
155
155
    return 0;
156
156
  }
157
157
 
158
158
  fd= open(logging_query_filename, O_WRONLY | O_APPEND | O_CREAT,
159
159
           S_IRUSR|S_IWUSR);
160
 
  if (fd < 0) 
 
160
  if (fd < 0)
161
161
  {
162
162
    sql_print_error(_("fail open() fn=%s er=%s\n"),
163
163
                    logging_query_filename,
183
183
{
184
184
  logging_st *l= (logging_st *) p;
185
185
 
186
 
  if (fd >= 0) 
 
186
  if (fd >= 0)
187
187
  {
188
188
    close(fd);
189
189
    fd= -1;