~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cached_directory.cc

  • Committer: Brian Aker
  • Date: 2011-10-19 19:30:54 UTC
  • mto: This revision was merged to the branch mainline in revision 2444.
  • Revision ID: brian@tangent.org-20111019193054-pxnb4hflrmbfhmbm
Fix level_t to be more inline with syslog

Show diffs side-by-side

added added

removed removed

Lines of Context:
162
162
          int err= stat(buffered_fullpath.c_str(), &entrystat);
163
163
 
164
164
          if (err != 0)
 
165
          {
165
166
            errmsg_printf(error::WARN, ER(ER_CANT_GET_STAT),
166
167
                          buffered_fullpath.c_str(),
167
168
                          errno);
 
169
          }
168
170
 
169
171
          if (err == 0 && S_ISDIR(entrystat.st_mode))
170
172
          {