From: a@null Date: Tue, 9 Dec 2008 21:55:47 +0000 (+0000) Subject: minor modification X-Git-Url: https://git.danieliu.xyz/?a=commitdiff_plain;ds=sidebyside;h=4e74263ba02edc7da07f23b2737a1e471375a6e8;p=dmenu.git minor modification --- diff --git a/dmenu.c b/dmenu.c index c0addad..44b4254 100644 --- a/dmenu.c +++ b/dmenu.c @@ -396,10 +396,7 @@ kpress(XKeyEvent * e) { default: if(num && !iscntrl((int) buf[0])) { buf[num] = 0; - if(len > 0) - strncat(text, buf, sizeof text); - else - strncpy(text, buf, sizeof text); + strncpy(text + len, buf, sizeof text - len); match(text); } break;