summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6a5ea21)
raw | patch | inline | side by side (parent: 6a5ea21)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Mon, 5 Jul 2010 07:26:44 +0000 (09:26 +0200) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Mon, 5 Jul 2010 07:26:44 +0000 (09:26 +0200) |
src/exec.c | patch | blob | history |
diff --git a/src/exec.c b/src/exec.c
index c64f949fc57b4ac5cff424a6b27e7cd283e13184..9aabe9fc9956fb87e2ea48e6240803daef745215 100644 (file)
--- a/src/exec.c
+++ b/src/exec.c
return (handle_putnotif (stdout, buffer));
else
{
- /* For backwards compatibility */
- char tmp[1220];
- /* Let's annoy the user a bit.. */
- INFO ("exec plugin: Prepending `PUTVAL' to this line: %s", buffer);
- ssnprintf (tmp, sizeof (tmp), "PUTVAL %s", buffer);
- return (handle_putval (stdout, tmp));
+ ERROR ("exec plugin: Unable to parse command, ignoring line: \"%s\"",
+ buffer);
+ return (-1);
}
} /* int parse_line }}} */