summaryrefslogtreecommitdiff
path: root/lib/chef/provider/package/yum.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/provider/package/yum.rb')
-rw-r--r--lib/chef/provider/package/yum.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/package/yum.rb b/lib/chef/provider/package/yum.rb
index aeecf3869e..858b430abe 100644
--- a/lib/chef/provider/package/yum.rb
+++ b/lib/chef/provider/package/yum.rb
@@ -128,7 +128,7 @@ class Chef
y_pos_max = y.length - 1
y_comp = nil
- while (x_pos <= x_pos_max and y_pos <= y_pos_max)
+ while x_pos <= x_pos_max and y_pos <= y_pos_max
# first we skip over anything non alphanumeric
while (x_pos <= x_pos_max) and (isalnum(x[x_pos]) == false)
x_pos += 1 # +1 over pos_max if end of string