Fix comments - smdev - suckless mdev
 (HTM) git clone git://git.suckless.org/smdev
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 8243d1a683e336ff6edb1ea1b65cde089a6322cb
 (DIR) parent 74d551415ca2b21d5b7d657b89466975c8f492a4
 (HTM) Author: sin <sin@2f30.org>
       Date:   Wed, 21 Aug 2013 17:00:21 +0100
       
       Fix comments
       
       Diffstat:
         M smdev.c                             |       5 ++---
       
       1 file changed, 2 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git a/smdev.c b/smdev.c
       @@ -133,7 +133,7 @@ create_dev(const char *path)
                        if (ret < 0)
                                eprintf("chown %s:", devname);
        
       -                /* Create the symlinks */
       +                /* Create symlinks */
                        if (Rule->path && Rule->path[0] == '>') {
                                snprintf(buf, sizeof(buf), "%s%s", &Rule->path[1], devname);
                                if (symlink(buf, origdevname))
       @@ -141,12 +141,11 @@ create_dev(const char *path)
                                                origdevname, buf);
                        }
        
       -                /* Export the needed environment */
                        snprintf(buf, sizeof(buf), "SMDEV=%s", devname);
                        if (putenv(buf) < 0)
                                eprintf("putenv:");
        
       -                /* Run the command hooks for this rule */
       +                /* Run command hooks for this rule */
                        if (Rule->cmd) {
                                switch (Rule->cmd[0]) {
                                case '@':