Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion storage/spider/spd_table.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6288,8 +6288,12 @@ int spider_db_init(

if (my_gethwaddr((uchar *) addr))
{
my_printf_error(ER_SPIDER_CANT_NUM, ER_SPIDER_CANT_STR1, MYF(ME_WARNING),
my_printf_error(ER_SPIDER_CANT_NUM, ER_SPIDER_CANT_STR1, MYF(ME_NOTE),
"get hardware address with error ", errno);
/*
If we can't get the hardware address, we zero it out.
The spider_unique_id will then look like: -000000000000-PID-
*/
bzero(addr,6);
}
spider_unique_id.str = spider_unique_id_buf;
Expand Down