commit 8243d1a683e336ff6edb1ea1b65cde089a6322cb
parent 74d551415ca2b21d5b7d657b89466975c8f492a4
Author: sin <sin@2f30.org>
Date: Wed, 21 Aug 2013 17:00:21 +0100
Fix comments
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
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 '@':