forgot to add c in getopt

This commit is contained in:
smayzy 2026-04-09 18:00:10 +02:00
parent 673cdb16a0
commit acc093b2a2

View File

@ -368,7 +368,7 @@ int main(int argc, char **argv) {
struct ifreq ifr;
while ((option = getopt(argc, argv, "d:hf")) !=-1) {
while ((option = getopt(argc, argv, "d:hfc")) !=-1) {
switch (option) {
case 'd' :
delay = atoi(optarg);