X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=fish%2Fmore.c;h=9008bd1c44edb4784190dd257e40c6366afad144;hb=342b4a55d056734a0344db8b4bcf1a90104a8a59;hp=27fc5481495f2c6168d7036162986f920abe7c94;hpb=0003ea2c3dbaa7e22f4f616539136821d80694b8;p=libguestfs.git diff --git a/fish/more.c b/fish/more.c index 27fc548..9008bd1 100644 --- a/fish/more.c +++ b/fish/more.c @@ -1,5 +1,5 @@ /* guestfish - the filesystem interactive shell - * Copyright (C) 2009 Red Hat Inc. + * Copyright (C) 2009-2011 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 @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include @@ -28,10 +28,11 @@ #include "fish.h" int -run_more (const char *cmd, int argc, char *argv[]) +run_more (const char *cmd, size_t argc, char *argv[]) { - char filename[] = "/tmp/guestfishXXXXXX"; + TMP_TEMPLATE_ON_STACK (filename); char buf[256]; + char *remote; const char *pager; int r, fd; @@ -49,24 +50,34 @@ run_more (const char *cmd, int argc, char *argv[]) pager = "more"; } + remote = argv[0]; + + /* Allow win:... prefix on remote. */ + remote = win_prefix (remote); + if (remote == NULL) + return -1; + /* Download the file and write it to a temporary. */ fd = mkstemp (filename); if (fd == -1) { perror ("mkstemp"); + free (remote); return -1; } snprintf (buf, sizeof buf, "/dev/fd/%d", fd); - if (guestfs_download (g, argv[0], buf) == -1) { + if (guestfs_download (g, remote, buf) == -1) { close (fd); unlink (filename); + free (remote); return -1; } if (close (fd) == -1) { perror (filename); unlink (filename); + free (remote); return -1; } @@ -78,8 +89,10 @@ run_more (const char *cmd, int argc, char *argv[]) unlink (filename); if (r != 0) { perror (buf); + free (remote); return -1; } + free (remote); return 0; }