Code

Display directories in a new style, [dir]
authorKalle Wallin <kaw@linux.se>
Wed, 24 Mar 2004 14:29:23 +0000 (14:29 +0000)
committerKalle Wallin <kaw@linux.se>
Wed, 24 Mar 2004 14:29:23 +0000 (14:29 +0000)
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@453 09075e82-0dd4-0310-85a5-a0d7c8717e4f

screen_file.c

index d503628cbe62dc0fae02413eaef17270e1fc29b3..ba0dbd3e1c948b280d70cbe2bd9b000085b05a1d 100644 (file)
@@ -42,7 +42,7 @@ list_callback(int index, int *highlight, void *data)
       mpd_Directory *dir = entity->info.directory;
       char *dirname = utf8_to_locale(basename(dir->path));
 
-      strncpy(buf, dirname, BUFSIZE);
+      snprintf(buf, BUFSIZE, "[%s]", dirname);
       free(dirname);
       return buf;
     }
@@ -336,7 +336,7 @@ file_cmd(screen_t *screen, mpd_client_t *c, command_t cmd)
          free(screen->findbuf);
          screen->findbuf=NULL;
        }
-      /* fall throw... */
+      /* continue... */
     case CMD_LIST_FIND_NEXT:
       if( !screen->findbuf )
        screen->findbuf=screen_readln(screen->status_window.w, "/");