X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=fish%2Fedit.c;h=3e6973e5f346e0d79c7ad535a9fc0bad1f9a7ff8;hp=c27f1009949a7f071bd1b9f71d0f3fe3c47821a5;hb=8ae7e1057f43e9b79260cdf191f39d657fdf0293;hpb=05712b2457a44ee0f0020eced77db03c2aa419a1 diff --git a/fish/edit.c b/fish/edit.c index c27f100..3e6973e 100644 --- a/fish/edit.c +++ b/fish/edit.c @@ -1,5 +1,5 @@ /* guestfish - the filesystem interactive shell - * Copyright (C) 2009 Red Hat Inc. + * Copyright (C) 2009 Red Hat Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -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) { @@ -101,7 +83,7 @@ do_edit (const char *cmd, int argc, char *argv[]) int r, fd, size; if (argc != 1) { - fprintf (stderr, "use '%s filename' to edit a file\n", cmd); + fprintf (stderr, _("use '%s filename' to edit a file\n"), cmd); return -1; }