X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=fish%2Fmore.c;h=01443fffc6af819a5b8e607eb1444848ff6cff22;hb=6d7d645cdd4a9c94c4d95fc52de53c37b88847e4;hp=55faefa845f813d8cae58f51bbd8bd24712ce1bb;hpb=639ca1828b167bf59353f0cd3c8c79c6289bbd5d;p=libguestfs.git diff --git a/fish/more.c b/fish/more.c index 55faefa..01443ff 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 @@ -28,10 +28,11 @@ #include "fish.h" int -do_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 @@ do_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 @@ do_more (const char *cmd, int argc, char *argv[]) unlink (filename); if (r != 0) { perror (buf); + free (remote); return -1; } + free (remote); return 0; }