Skip to content
Snippets Groups Projects
Commit 82014283 authored by Benjamin Cumming's avatar Benjamin Cumming
Browse files

rename cl_options.check -> check_and_normalize

parent fafcd776
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ cl_options read_options(int argc, char** argv) {
}
if(options.ifname == "") {
options.check();
options.check_and_normalize();
return options;
}
else {
......@@ -98,7 +98,7 @@ cl_options read_options(int argc, char** argv) {
<< options.ifname << "\n";
exit(1);
}
options.check();
options.check_and_normalize();
return options;
}
}
......
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