Unmet condition in LOADLIST remote command
Brought to you by:
sobukus
Short command "L" is already detected as "LOAD", thus the first condition cannot be met.
mpg123-1.20.1/src/control_generic.c:
if (!strcasecmp(cmd, "L") || !strcasecmp(cmd, "LOADLIST")){ generic_loadlist(fr, arg); continue; }
Alternatively creating "LL" alias for LOADLIST:
mpg123-1.20.1/src/control_generic.c:
if (!strcasecmp(cmd, "LL") || !strcasecmp(cmd, "LOADLIST")){ generic_loadlist(fr, arg); continue; }
and documenting that to help in control_generic.c + mpg123-1.20.1/doc/README.remote by changing LOADLIST to LOADLIST/LL
Hey, you're the first to notice;-) Yeah, LL is fine. It's in revision
3579 of mpg123 trunk.
Thanks!
What about doc/README.remote?