Changeset 13716
- Timestamp:
- 01/25/10 17:19:06 (3 years ago)
- File:
-
- 1 edited
-
src/router/wiviz2/wiviz.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/router/wiviz2/wiviz.c
r13714 r13716 669 669 fprintf(outf, "h.mac = '"); 670 670 fprint_mac(outf, host->mac, "';\n"); 671 fprintf(outf, "h.rssi = -%i;\nh.type = '", host->RSSI / 100); 671 if (host->RSSI<0) 672 fprintf(outf, "h.rssi = %i;\nh.type = '", host->RSSI / 100); 673 else 674 fprintf(outf, "h.rssi = -%i;\nh.type = '", host->RSSI / 100); 672 675 switch (host->type) { 673 676 case typeAP: fprintf(outf, "ap"); break;
Note: See TracChangeset
for help on using the changeset viewer.
