Commit 3651933d authored by unknown's avatar unknown
Browse files

vsnprintf is not available on win2003-x86 host, as this is just a debug...

vsnprintf is not available on win2003-x86 host, as this is just a debug functionality - disable it for now.


parent 4404ea64
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -728,9 +728,11 @@ void die(const char *fmt, ...)
  if (fmt)
  {
#ifdef DBUG_ON
#ifndef __WIN__
    char buff[256];
    vsnprintf(buff, sizeof(buff), fmt, args);
    DBUG_PRINT("error", ("%s", buff));
#endif
#endif
    fprintf(stderr, "mysqltest: ");
    if (cur_file && cur_file != file_stack)
@@ -855,8 +857,10 @@ void warning_msg(const char *fmt, ...)
    dynstr_append_mem(&ds_warning_messages,
                      buff, len);
  }
#ifndef __WIN__
  len= vsnprintf(buff, sizeof(buff), fmt, args);
  dynstr_append_mem(&ds_warning_messages, buff, len);
#endif
  dynstr_append(&ds_warning_messages, "\n");
  va_end(args);