We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61f688c commit 2fbaa45Copy full SHA for 2fbaa45
src/backend/utils/adt/mac.c
@@ -1,7 +1,7 @@
1
/*
2
* PostgreSQL type definitions for MAC addresses.
3
*
4
- * $Id: mac.c,v 1.8.2.1 1999/08/02 05:24:54 scrappy Exp $
+ * $Id: mac.c,v 1.8.2.2 1999/12/16 02:57:14 momjian Exp $
5
*/
6
7
@@ -132,7 +132,7 @@ manufacturer manufacturers[] = {
132
((unsigned long)((addr->a<<16)|(addr->b<<8)|(addr->c)))
133
134
#define lobits(addr) \
135
- ((unsigned long)((addr->c<<16)|(addr->e<<8)|(addr->f)))
+ ((unsigned long)((addr->d<<16)|(addr->e<<8)|(addr->f)))
136
137
138
* MAC address reader. Accepts several common notations.
0 commit comments