15 lines
628 B
Diff
15 lines
628 B
Diff
|
Fix usage of localtime parameter in PV guest configuration
|
||
|
Signed-off-by: Bruce Rogers <brogers@novell.com>
|
||
|
|
||
|
--- a/tools/python/xen/xend/XendDomainInfo.py 2007-01-20 08:19:11.877589448 -0700
|
||
|
+++ b/tools/python/xen/xend/XendDomainInfo.py 2007-01-20 09:20:59.805618252 -0700
|
||
|
@@ -1361,7 +1361,7 @@
|
||
|
self.info['image'],
|
||
|
self.info['devices'])
|
||
|
|
||
|
- localtime = self.info.get('localtime', False)
|
||
|
+ localtime = self.info.get('platform_localtime', False)
|
||
|
if localtime:
|
||
|
xc.domain_set_time_offset(self.domid)
|
||
|
|