~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqlbinlog.cc

  • Committer: Stewart Smith
  • Date: 2008-06-30 01:08:38 UTC
  • mto: (12.3.1 drizzle-stew)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: stewart@flamingspork.com-20080630010838-zjkk8i03piv7b5df
remove more #ifdef __WIN__ code

Show diffs side-by-side

added added

removed removed

Lines of Context:
1822
1822
  }
1823
1823
  else
1824
1824
  {
1825
 
    /* read from stdin */
1826
 
    /*
1827
 
      Windows opens stdin in text mode by default. Certain characters
1828
 
      such as CTRL-Z are interpeted as events and the read() method
1829
 
      will stop. CTRL-Z is the EOF marker in Windows. to get past this
1830
 
      you have to open stdin in binary mode. Setmode() is used to set
1831
 
      stdin in binary mode. Errors on setting this mode result in 
1832
 
      halting the function and printing an error message to stderr.
1833
 
    */
1834
 
#if defined (__WIN__) || (_WIN64)
1835
 
    if (_setmode(fileno(stdin), O_BINARY) == -1)
1836
 
    {
1837
 
      error("Could not set binary mode on stdin.");
1838
 
      return ERROR_STOP;
1839
 
    }
1840
 
#endif 
1841
1825
    if (init_io_cache(file, fileno(stdin), 0, READ_CACHE, (my_off_t) 0,
1842
1826
                      0, MYF(MY_WME | MY_NABP | MY_DONT_CHECK_FILESIZE)))
1843
1827
    {