Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | New API: guestfs_copy_size to copy a fixed number of bytes. | Richard Jones | 2010-03-23 | 1 | -0/+81 |
| | | | | | | | This is similar to 'guestfs_dd', but it copies just a fixed number of bytes from the source to the destination. It's an error if the source is too short or if the destination is too small. | ||||
* | daemon: Don't need to prefix error messages with the command name. | Richard Jones | 2010-02-12 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | The RPC stubs already prefix the command name to error messages. The daemon doesn't have to do this. As a (small) benefit this also makes the daemon slightly smaller. Code in the daemon such as: if (argv[0] == NULL) { reply_with_error ("passed an empty list"); return NULL; } now results in error messages like this: ><fs> command "" libguestfs: error: command: passed an empty list (whereas previously you would have seen ..command: command:..) | ||||
* | dd: Missing include of <string.h> | Richard Jones | 2009-11-25 | 1 | -0/+1 |
| | | | | Breaks compilation on Windows. | ||||
* | Implement 'dd' command. | Richard Jones | 2009-11-23 | 1 | -0/+71 |