X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=sidebar.c;h=cd3db75a294e43045142932d9a9039698e5a63fc;hp=4e2c08ec347ba58b81dec63aec1a118c6f3033b4;hb=c6b9d35ed9361e4defab9762a7480d5126405ae9;hpb=9274cbe8e6410ddb95ddc667faa678a29da85420 diff --git a/sidebar.c b/sidebar.c index 4e2c08e..cd3db75 100644 --- a/sidebar.c +++ b/sidebar.c @@ -230,9 +230,9 @@ int make_sidebar_entry (char* box, int idx, size_t len) shortened = 1; } - snprintf (entry, len-lencnt, "%s", box); + m_strcpy(entry, len - lencnt, box); entry[m_strlen(entry)] = ' '; - strncpy (entry + (len - lencnt), no, lencnt); + m_strcpy(entry + (len - lencnt), lencnt, no); addnstr (entry, len); @@ -289,9 +289,9 @@ void sidebar_draw_frames (void) { move (i, SidebarWidth - delim_len); if (option (OPTASCIICHARS)) addstr (NONULL (SidebarDelim)); - else if (!option (OPTASCIICHARS) && !str_cmp (SidebarDelim, "|")) + else if (!option (OPTASCIICHARS) && !m_strcmp(SidebarDelim, "|")) addch (ACS_VLINE); - else if ((Charset_is_utf8) && !str_cmp (SidebarDelim, "|")) + else if ((Charset_is_utf8) && !m_strcmp(SidebarDelim, "|")) addstr ("\342\224\202"); else addstr (NONULL (SidebarDelim));