mirror of
https://github.com/SuperBFG7/ympd
synced 2024-11-25 22:37:18 +00:00
fixed mpd connection with empty mpdpass introduced by #148
This commit is contained in:
parent
8c1115dc63
commit
88b2aa70c8
@ -113,7 +113,8 @@ int main(int argc, char **argv)
|
|||||||
run_as_user = strdup(optarg);
|
run_as_user = strdup(optarg);
|
||||||
break;
|
break;
|
||||||
case 'm':
|
case 'm':
|
||||||
mpd.password = strdup(optarg);
|
if (strlen(optarg) > 0)
|
||||||
|
mpd.password = strdup(optarg);
|
||||||
break;
|
break;
|
||||||
case 'v':
|
case 'v':
|
||||||
fprintf(stdout, "ympd %d.%d.%d\n"
|
fprintf(stdout, "ympd %d.%d.%d\n"
|
||||||
|
Loading…
Reference in New Issue
Block a user