Edward Bartolo <edb...@gmail.com> writes:

[...]


>               strcpy(text, "auto lo\n");
>               fprintf(fp, text);

None of these 2 line pairs is really needed: You can always just use the
literal string directly, eg,

fputs("auto lo\n", fp);


[...]


>               char command[1024];
>               strcpy(command, "/sbin/iwlist wlan0 scanning | /bin/grep 
> ESSID");
>               int q = exec(command, s);

or

exec("/sbin/iwlist wlan0 scanning | /bin/grep ESSID", s)

here.
_______________________________________________
Dng mailing list
Dng@lists.dyne.org
https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng

Reply via email to