t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 32563abe86100150645c285c9a769257836bd86d
   DIR parent 70c7b432eabd01093daa22b72d3c472c84f9cbc9
   URI Author: Anselm R. Garbe <arg@suckless.org>
       Date:   Wed, 23 May 2007 22:33:46 +0200
       
       removed the only one and superfloues strncmp
       Diffstat:
         M main.c                              |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/main.c b/main.c
       t@@ -278,7 +278,7 @@ main(int argc, char *argv[]) {
                fd_set rd;
                XEvent ev;
        
       -        if(argc == 2 && !strncmp("-v", argv[1], 3))
       +        if(argc == 2 && !strcmp("-v", argv[1]))
                        eprint("dwm-"VERSION", © 2004-2007 Anselm R. Garbe, Sander van Dijk\n");
                else if(argc != 1)
                        eprint("usage: dwm [-v]\n");