summaryrefslogtreecommitdiffstats
path: root/fish/edit.c
diff options
context:
space:
mode:
authorRichard Jones <rjones@centos5x32.home.annexia.org>2009-07-03 00:22:14 +0100
committerRichard Jones <rjones@centos5x32.home.annexia.org>2009-07-03 00:22:14 +0100
commit6fb57e430c8daa06d8d938ac02a104c8aadbbda5 (patch)
tree38586363a6a7d68e5559347d1cc7671593c81aed /fish/edit.c
parentb7e094fa14b306fe776b9b2695cf82fa32d4923f (diff)
parentee4c49fad5a3e36c6e909ab90bcb7d719c9395b3 (diff)
downloadlibguestfs-6fb57e430c8daa06d8d938ac02a104c8aadbbda5.tar.gz
libguestfs-6fb57e430c8daa06d8d938ac02a104c8aadbbda5.tar.xz
libguestfs-6fb57e430c8daa06d8d938ac02a104c8aadbbda5.zip
Merge branch 'master' of git+ssh://192.168.122.1/home/rjones/d/libguestfs
Diffstat (limited to 'fish/edit.c')
-rw-r--r--fish/edit.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/fish/edit.c b/fish/edit.c
index 5519bb95..c72ad1d8 100644
--- a/fish/edit.c
+++ b/fish/edit.c
@@ -29,24 +29,6 @@
/* guestfish edit command, suggested by Ján Ondrej, implemented by RWMJ */
-static int
-xwrite (int fd, const void *buf, size_t len)
-{
- int r;
-
- while (len > 0) {
- r = write (fd, buf, len);
- if (r == -1) {
- perror ("write");
- return -1;
- }
- buf += r;
- len -= r;
- }
-
- return 0;
-}
-
static char *
load_file (const char *filename, int *len_r)
{