diff options
author | Richard Jones <rjones@redhat.com> | 2009-04-04 16:38:28 +0100 |
---|---|---|
committer | Richard Jones <rjones@redhat.com> | 2009-04-04 16:38:28 +0100 |
commit | 843514eef9dc6d04d71e031ba9ddb16e2beb9a04 (patch) | |
tree | 8318edc62b21e5823cfd5c4171d8a974571bc90d /daemon/file.c | |
parent | eb50cde931893e54c5aa9816cbca49e36891be8f (diff) | |
download | libguestfs-843514eef9dc6d04d71e031ba9ddb16e2beb9a04.tar.gz libguestfs-843514eef9dc6d04d71e031ba9ddb16e2beb9a04.tar.xz libguestfs-843514eef9dc6d04d71e031ba9ddb16e2beb9a04.zip |
Implement RString and RStringList return types.
- implement 'll' command.
- outlines for 'ls' and 'cat' commands.
Diffstat (limited to 'daemon/file.c')
-rw-r--r-- | daemon/file.c | 7 |
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; +} |