Commit e9d88a10 authored by Cedric Roux's avatar Cedric Roux

bugfix: array too short for data

6 numbers (2 hexa digits each) separated by ':'
plus ending 0 makes 18 bytes, not 6, let's put 20
parent e5c5185e
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
/* local IP/MAC address is detected*/ /* local IP/MAC address is detected*/
char rrh_ip[20] = "0.0.0.0"; char rrh_ip[20] = "0.0.0.0";
unsigned char rrh_mac[6] = "0:0:0:0:0:0"; unsigned char rrh_mac[20] = "0:0:0:0:0:0";
int rrh_port = 50000; // has to be an option int rrh_port = 50000; // has to be an option
/* log */ /* log */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment