From: Kalle Wallin Date: Wed, 24 Mar 2004 14:29:23 +0000 (+0000) Subject: Display directories in a new style, [dir] X-Git-Tag: v0.12_alpha1~662 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ecaa2131695342d84a3cc3b472032a7805e34a8b;p=ncmpc.git Display directories in a new style, [dir] git-svn-id: https://svn.musicpd.org/ncmpc/trunk@453 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- diff --git a/screen_file.c b/screen_file.c index d503628..ba0dbd3 100644 --- a/screen_file.c +++ b/screen_file.c @@ -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, "/");