# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1253002894 -3600
# Node ID 67f1b8b3258591b979c441c6013af3c442063cc1
# Parent 045b2b8b522708093b91f883f1b7e7c1805f71e3
pygrub: Correct pygrub return value
This is the patch to correct pygrub return value for checkPassword()
function. It didn't return False at the end of the function. It
returned None so it was working fine and it's most likely just a
cosmetic issue.
Also, the missing () were added to checkPassword() function when
calling hasPassword and the unnecessary comment was removed.
Signed-off-by: Michal Novotny <minovotn@xxxxxxxxxx>
---
tools/pygrub/src/GrubConf.py | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff -r 045b2b8b5227 -r 67f1b8b32585 tools/pygrub/src/GrubConf.py
--- a/tools/pygrub/src/GrubConf.py Tue Sep 15 09:20:47 2009 +0100
+++ b/tools/pygrub/src/GrubConf.py Tue Sep 15 09:21:34 2009 +0100
@@ -220,10 +220,9 @@ class GrubConfigFile(object):
def checkPassword(self, password):
# Always allow if no password defined in grub.conf
- if not self.hasPassword:
+ if not self.hasPassword():
return True
- # If we're here, we're having 'password' attribute set
pwd = getattr(self, 'password').split()
# We check whether password is in MD5 hash for comparison
@@ -239,6 +238,8 @@ class GrubConfigFile(object):
# ... and if not, we compare it as a plain text
if pwd[0] == password:
return True
+
+ return False
def set(self, line):
(com, arg) = grub_exact_split(line, 2)
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|