[Assignment-7] fixed typo

This commit is contained in:
Sascha Tommasone 2024-07-06 17:53:16 +02:00 committed by saschato
parent b901e63f99
commit 1b83c83a4f

View file

@ -23,7 +23,7 @@ int main(int argc, char** argv) {
else if (strcmp(command, "proxysetup")==0) else if (strcmp(command, "proxysetup")==0)
handle_proxysetup(argc-2, argv+2); handle_proxysetup(argc-2, argv+2);
else if (strcmp(command, "embedded")==0) else if (strcmp(command, "embedded")==0)
handle_proxysetup(argc-2, argv+2); handle_embedded_device(argc-2, argv+2);
else else
syntax_exit(); syntax_exit();
} }