Implement the --version option
Since we have a version number at all, even if it's meaningless.
This commit is contained in:
parent
cc59fcfb41
commit
0c1a8d9902
5
sdn.cpp
5
sdn.cpp
@ -1720,6 +1720,11 @@ fun save_config () {
|
||||
}
|
||||
|
||||
int main (int argc, char *argv[]) {
|
||||
if (argc == 2 && string (argv[1]) == "--version") {
|
||||
cout << PROJECT_NAME << " " << PROJECT_VERSION << endl;
|
||||
return 0;
|
||||
}
|
||||
|
||||
// zsh before 5.4 may close stdin before exec without redirection,
|
||||
// since then it redirects stdin to /dev/null
|
||||
(void) close (STDIN_FILENO);
|
||||
|
Loading…
Reference in New Issue
Block a user