Index: modules/update/update.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/update/update.module,v
retrieving revision 1.25
diff -u -p -r1.25 update.module
--- modules/update/update.module	20 Sep 2008 20:22:25 -0000	1.25
+++ modules/update/update.module	23 Sep 2008 18:04:38 -0000
@@ -278,7 +278,7 @@ function update_cron() {
   $interval = 60 * 60 * 24 * $frequency;
   // Cron should check for updates if there is no update data cached or if the configured
   // update interval has elapsed.
-  if (!cache_get('update_info', 'cache_update') || REQUEST_TIME - variable_get('update_last_check', 0) > $interval) {
+  if (!cache_get('update_info', 'cache_update') || ((REQUEST_TIME - variable_get('update_last_check', 0)) > $interval)) {
     update_refresh();
     _update_cron_notify();
   }
