From f3ae51d938753768a289f0e9146f9ce2a5e2511b Mon Sep 17 00:00:00 2001 From: Steve Schnepp Date: Sat, 9 Feb 2013 11:27:05 +0100 Subject: [PATCH] mnc: add placeholder --- tools/munin-node-c/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/munin-node-c/main.c b/tools/munin-node-c/main.c index 180d0678..8f2c0575 100644 --- a/tools/munin-node-c/main.c +++ b/tools/munin-node-c/main.c @@ -72,6 +72,7 @@ int main(int argc, char *argv[]) { } else if (strcmp(cmd, "quit") == 0) { return(0); } else if (strcmp(cmd, "list") == 0) { + printf("# not implem yet cmd: %s\n", cmd); } else if (strcmp(cmd, "config") == 0) { } else if (strcmp(cmd, "fetch") == 0) { } else if (strcmp(cmd, "cap") == 0) { @@ -81,6 +82,7 @@ int main(int argc, char *argv[]) { } printf("\n"); } else if (strcmp(cmd, "spoolfetch") == 0) { + printf("# not implem yet cmd: %s\n", cmd); } else { printf("# unknown cmd: %s\n", cmd); }