remove --update-db option
git-svn-id: https://svn.musicpd.org/mpd/trunk@2719 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
parent
26e943c025
commit
3a89afdd80
|
@ -81,7 +81,7 @@ void usage(char * argv[]) {
|
|||
ERROR(" --no-daemon don't detach from console\n");
|
||||
ERROR(" --stdout print msgs to stdout and stderr\n");
|
||||
ERROR(" --create-db force (re)creation database and exit\n");
|
||||
ERROR(" --update-db create database and exit\n");
|
||||
/*ERROR(" --update-db create database and exit\n");*/
|
||||
ERROR(" --no-create-db don't create database\n");
|
||||
ERROR(" --verbose verbose logging\n");
|
||||
ERROR(" --version prints version information\n");
|
||||
|
@ -131,11 +131,11 @@ void parseOptions(int argc, char ** argv, Options * options) {
|
|||
options->createDB = 1;
|
||||
argcLeft--;
|
||||
}
|
||||
else if(strcmp(argv[i],"--update-db")==0) {
|
||||
/*else if(strcmp(argv[i],"--update-db")==0) {
|
||||
options->stdOutput = 1;
|
||||
options->updateDB = 1;
|
||||
argcLeft--;
|
||||
}
|
||||
}*/
|
||||
else if(strcmp(argv[i],"--no-create-db")==0) {
|
||||
options->createDB = -1;
|
||||
argcLeft--;
|
||||
|
|
Loading…
Reference in New Issue