From f3924b9b218853c267af1c8b61b4b02a45e3e80a Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Mon, 4 Aug 2008 21:15:44 +0100 Subject: [PATCH] Correct playlist read sense Organization: Straylight/Edgeware From: Richard Kettlewell --- clients/disorder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/disorder.c b/clients/disorder.c index 719cf04..b57a8de 100644 --- a/clients/disorder.c +++ b/clients/disorder.c @@ -628,7 +628,7 @@ static void cf_playlist_set(char **argv) { tag = "stdin"; } vector_init(v); - while(inputline(tag, input, &l, '\n')) { + while(!inputline(tag, input, &l, '\n')) { if(!strcmp(l, ".")) break; vector_append(v, l); -- [mdw]