Merge pull request #15 from SuperBFG7/notandy-master

Notandy master
This commit is contained in:
Daniel Schregenberger 2018-01-26 15:43:58 +01:00 committed by GitHub
commit 2a0e4fb22a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -132,7 +132,8 @@ int main(int argc, char **argv)
run_as_user = strdup(optarg);
break;
case 'm':
mpd.password = strdup(optarg);
if (strlen(optarg) > 0)
mpd.password = strdup(optarg);
break;
case 'v':
fprintf(stdout, "ympd %d.%d.%d\n"