# HG changeset patch # User Matti Hamalainen # Date 1188948556 -10800 # Node ID 9ad9b3479b385f48db3244b76c26fc76f634b576 # Parent a08203b533daa6d58869fae24248b4512d87ca5f Actually only use [!] marker in the subtune menu, not the whole info field. diff -r a08203b533da -r 9ad9b3479b38 src/sid/xs_fileinfo.c --- a/src/sid/xs_fileinfo.c Wed Sep 05 02:23:09 2007 +0300 +++ b/src/sid/xs_fileinfo.c Wed Sep 05 02:29:16 2007 +0300 @@ -260,9 +260,8 @@ isSet = TRUE; } - if (tmpNode->pInfo) { - xs_pnstrcat(tmpStr, sizeof(tmpStr), - isSet ? " [!]" : tmpNode->pInfo); + if (tmpNode->pInfo && isSet) { + xs_pnstrcat(tmpStr, sizeof(tmpStr), " [!]"); isSet = TRUE; }