Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
9f79d2f9
Commit
9f79d2f9
authored
Oct 18, 2011
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix of building on Mac OS.
parent
4720b6f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
mysys/my_gethwaddr.c
mysys/my_gethwaddr.c
+2
-3
No files found.
mysys/my_gethwaddr.c
View file @
9f79d2f9
...
@@ -32,8 +32,7 @@ static my_bool memcpy_and_test(uchar *to, uchar *from, uint len)
...
@@ -32,8 +32,7 @@ static my_bool memcpy_and_test(uchar *to, uchar *from, uint len)
return
res
;
return
res
;
}
}
#ifdef __FreeBSD__
#if defined(__APPLE__) || defined(__FreeBSD__)
#include <net/ethernet.h>
#include <net/ethernet.h>
#include <sys/sysctl.h>
#include <sys/sysctl.h>
#include <net/route.h>
#include <net/route.h>
...
@@ -63,7 +62,7 @@ my_bool my_gethwaddr(uchar *to)
...
@@ -63,7 +62,7 @@ my_bool my_gethwaddr(uchar *to)
if
(
ifm
->
ifm_type
==
RTM_IFINFO
)
if
(
ifm
->
ifm_type
==
RTM_IFINFO
)
{
{
sdl
=
(
struct
sockaddr_dl
*
)(
ifm
+
1
);
sdl
=
(
struct
sockaddr_dl
*
)(
ifm
+
1
);
addr
=
LLADDR
(
sdl
);
addr
=
(
uchar
*
)
LLADDR
(
sdl
);
res
=
memcpy_and_test
(
to
,
addr
,
ETHER_ADDR_LEN
);
res
=
memcpy_and_test
(
to
,
addr
,
ETHER_ADDR_LEN
);
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment