From 8f5030ea863d3fd4cf6b649111eaf78656069ca1 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Sun, 14 Feb 2016 22:17:38 +0100 Subject: [PATCH] fix my_gethwaddr() for solaris it caused feedback plugin tests to fail --- mysys/my_gethwaddr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysys/my_gethwaddr.c b/mysys/my_gethwaddr.c index db026c13700..c7aa7f17f1d 100644 --- a/mysys/my_gethwaddr.c +++ b/mysys/my_gethwaddr.c @@ -72,7 +72,7 @@ err: return res; } -#elif defined(__linux__) || defined(__sun__) +#elif defined(__linux__) || defined(__sun) #include #include #include