aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2010-06-09 07:55:19 +0100
committerKeir Fraser <keir.fraser@citrix.com>2010-06-09 07:55:19 +0100
commitd2a6ffdc548bac8be83e4be49ced5474b2b1acd2 (patch)
treee9933fbd801adef0c2a4fbc2c11a296c6a48e04c
parent8d305177cf03deb622cf5a4464c30c1a5b57c667 (diff)
downloadxen-d2a6ffdc548bac8be83e4be49ced5474b2b1acd2.tar.gz
xen-d2a6ffdc548bac8be83e4be49ced5474b2b1acd2.tar.bz2
xen-d2a6ffdc548bac8be83e4be49ced5474b2b1acd2.zip
xend: Remove use of non-existent xc.handle() function.
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
-rw-r--r--tools/python/xen/xend/XendCheckpoint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/python/xen/xend/XendCheckpoint.py b/tools/python/xen/xend/XendCheckpoint.py
index 1cb1cab1b7..10ed67f807 100644
--- a/tools/python/xen/xend/XendCheckpoint.py
+++ b/tools/python/xen/xend/XendCheckpoint.py
@@ -360,7 +360,7 @@ class RestoreInputHandler:
def forkHelper(cmd, fd, inputHandler, closeToChild):
- child = xPopen3(cmd, True, -1, [fd, xc.handle()])
+ child = xPopen3(cmd, True, -1, [fd])
if closeToChild:
child.tochild.close()