summaryrefslogtreecommitdiffstats
path: root/daemon/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/file.c')
-rw-r--r--daemon/file.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/daemon/file.c b/daemon/file.c
index 1e633d85..db199182 100644
--- a/daemon/file.c
+++ b/daemon/file.c
@@ -61,3 +61,10 @@ do_touch (const char *path)
close (fd);
return 0;
}
+
+char *
+do_cat (const char *path)
+{
+ reply_with_error ("cat command is not yet implemented");
+ return NULL;
+}