# HG changeset patch # User Matti Hamalainen # Date 1188948601 0 # Node ID 0fb76035528350f69b3e06ba762b5bb4da812daf # Parent 1684092c2bc9443a26a2f4f66c40d11fa0e3267d Actually only use [!] marker in the subtune menu, not the whole info field. diff -r 1684092c2bc9 -r 0fb760355283 src/xs_fileinfo.c --- a/src/xs_fileinfo.c Tue Sep 04 21:03:03 2007 +0000 +++ b/src/xs_fileinfo.c Tue Sep 04 23:30:01 2007 +0000 @@ -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; }