It is working on Linux, as well as --mac-list. It looks like "rb" isn't supported on Windows, e.g.:
By latest commit I changed the mode from "rb" to "r" and "wb" to "w".
The devil is often in the details:
It isn't enough to compile a file. It has to be ported to the target operating system, too, because then handling some function calls is different.
I don't take care about this, because I use Linux, only.
Code:
if((fh_essidlistin = fopen(essidlistinname, "rb")) == NULL)
if((fh_maclistin = fopen(macskipname, "rb")) == NULL)
if((fh_maclistin = fopen(macskipname, "rb")) == NULL)
By latest commit I changed the mode from "rb" to "r" and "wb" to "w".
The devil is often in the details:
It isn't enough to compile a file. It has to be ported to the target operating system, too, because then handling some function calls is different.
I don't take care about this, because I use Linux, only.