~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_gethwaddr.c

  • Committer: Brian Aker
  • Date: 2008-07-13 18:27:33 UTC
  • Revision ID: brian@tangent.org-20080713182733-3u1et5nrmofi8a8n
my_bool cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#ifndef MAIN
23
23
 
24
24
#if defined(__FreeBSD__) || defined(__linux__)
25
 
static my_bool memcpy_and_test(uchar *to, uchar *from, uint len)
 
25
static bool memcpy_and_test(uchar *to, uchar *from, uint len)
26
26
{
27
27
  uint i, res=1;
28
28
 
41
41
#include <net/if.h>
42
42
#include <net/if_dl.h>
43
43
 
44
 
my_bool my_gethwaddr(uchar *to)
 
44
bool my_gethwaddr(uchar *to)
45
45
{
46
46
  size_t len;
47
47
  uchar  *buf, *next, *end, *addr;
79
79
#include <sys/ioctl.h>
80
80
#include <net/ethernet.h>
81
81
 
82
 
my_bool my_gethwaddr(uchar *to)
 
82
bool my_gethwaddr(uchar *to)
83
83
{
84
84
  int fd, res=1;
85
85
  struct ifreq ifr;
103
103
 
104
104
#else   /* FreeBSD elif linux */
105
105
/* just fail */
106
 
my_bool my_gethwaddr(uchar *to __attribute__((unused)))
 
106
bool my_gethwaddr(uchar *to __attribute__((unused)))
107
107
{
108
108
  return 1;
109
109
}