diff options
author | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2013-08-24 13:21:51 -0400 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2013-08-24 13:21:51 -0400 |
commit | 8637d06e0e97c011932b41053579891e4ffa907d (patch) | |
tree | 28f32b0c884e26fd48bca41cffb3ae6a2efc1f3a /node | |
parent | df98e5a635eb661063d14f7a239774e02db60dd3 (diff) | |
download | infinitytier-8637d06e0e97c011932b41053579891e4ffa907d.tar.gz infinitytier-8637d06e0e97c011932b41053579891e4ffa907d.zip |
It builds and it installs! Well, except for not being digitally signed. :P
Diffstat (limited to 'node')
-rw-r--r-- | node/EthernetTap.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/node/EthernetTap.cpp b/node/EthernetTap.cpp index 9e07d160..09af7179 100644 --- a/node/EthernetTap.cpp +++ b/node/EthernetTap.cpp @@ -832,6 +832,7 @@ EthernetTap::EthernetTap( char tmps[4096]; sprintf_s(tmps,"%.2X-%.2X-%.2X-%.2X-%.2X-%.2X",(unsigned int)mac.data[0],(unsigned int)mac.data[1],(unsigned int)mac.data[2],(unsigned int)mac.data[3],(unsigned int)mac.data[4],(unsigned int)mac.data[5]); RegSetKeyValueA(nwAdapters,mySubkeyName.c_str(),"NetworkAddress",REG_SZ,tmps,strlen(tmps)+1); + RegSetKeyValueA(nwAdapters,mySubkeyName.c_str(),"MAC",REG_SZ,tmps,strlen(tmps)+1); DWORD tmp = mtu; RegSetKeyValueA(nwAdapters,mySubkeyName.c_str(),"MTU",REG_DWORD,(LPCVOID)&tmp,sizeof(tmp)); tmp = 0; |