2011-06-30 17:46:53 +02:00
|
|
|
/* Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
|
2001-12-06 14:10:51 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2006-12-23 20:17:15 +01:00
|
|
|
the Free Software Foundation; version 2 of the License.
|
2001-12-06 14:10:51 +02:00
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
2000-07-31 21:29:14 +02:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2001-12-06 14:10:51 +02:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2011-06-30 17:46:53 +02:00
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
#include "mysys_priv.h"
|
|
|
|
|
2010-05-28 19:53:26 -03:00
|
|
|
void my_message_stderr(uint error __attribute__((unused)),
|
|
|
|
const char *str, myf MyFlags)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2010-05-28 19:53:26 -03:00
|
|
|
DBUG_ENTER("my_message_stderr");
|
2000-07-31 21:29:14 +02:00
|
|
|
DBUG_PRINT("enter",("message: %s",str));
|
|
|
|
(void) fflush(stdout);
|
|
|
|
if (MyFlags & ME_BELL)
|
2010-07-15 08:13:30 -03:00
|
|
|
(void) fputc('\007', stderr);
|
2000-07-31 21:29:14 +02:00
|
|
|
if (my_progname)
|
|
|
|
{
|
|
|
|
(void)fputs(my_progname,stderr); (void)fputs(": ",stderr);
|
|
|
|
}
|
|
|
|
(void)fputs(str,stderr);
|
|
|
|
(void)fputc('\n',stderr);
|
|
|
|
(void)fflush(stderr);
|
2009-09-10 03:18:29 -06:00
|
|
|
DBUG_VOID_RETURN;
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|