WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [xen-unstable] xl: correct help message of migrate and m

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-unstable] xl: correct help message of migrate and migrate-receive command
From: Xen patchbot-unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Fri, 04 Jun 2010 03:45:27 -0700
Delivery-date: Fri, 04 Jun 2010 03:47:28 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1275642731 -3600
# Node ID 6f71276b1f214d01fb717c3940c468a5e1321fa3
# Parent  69ee5220bd944c0ba29e56504b0f1a275a8710e3
xl: correct help message of migrate and migrate-receive command

Signed-off-by: Yang Hongyang <yanghy@xxxxxxxxxxxxxx>
---
 tools/libxl/xl_cmdimpl.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff -r 69ee5220bd94 -r 6f71276b1f21 tools/libxl/xl_cmdimpl.c
--- a/tools/libxl/xl_cmdimpl.c  Fri Jun 04 10:11:40 2010 +0100
+++ b/tools/libxl/xl_cmdimpl.c  Fri Jun 04 10:12:11 2010 +0100
@@ -2206,7 +2206,7 @@ int main_migrate_receive(int argc, char 
     while ((opt = getopt(argc, argv, "hed")) != -1) {
         switch (opt) {
         case 'h':
-            help("restore");
+            help("migrate-receive");
             exit(2);
             break;
         case 'e':
@@ -2222,7 +2222,7 @@ int main_migrate_receive(int argc, char 
     }
 
     if (argc-optind != 0) {
-        help("restore");
+        help("migrate-receive");
         exit(2);
     }
     migrate_receive(debug, daemonize);
@@ -2295,7 +2295,7 @@ int main_migrate(int argc, char **argv)
     }
 
     if (argc-optind < 2 || argc-optind > 2) {
-        help("save");
+        help("migrate");
         exit(2);
     }
 

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-unstable] xl: correct help message of migrate and migrate-receive command, Xen patchbot-unstable <=