? .git
Index: cvs.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cvslog/cvs.module,v
retrieving revision 1.164
diff -u -r1.164 cvs.module
--- cvs.module	24 Aug 2007 04:28:30 -0000	1.164
+++ cvs.module	13 Sep 2007 21:41:38 -0000
@@ -1274,7 +1274,13 @@
     while ($commit = db_fetch_object($result)) {
       $title = t('Commit !id by !cvs_user', array('!id' => $commit->cid, '!cvs_user' => $commit->cvs_user));
       $link = url('cvs', "commit=$commit->cid", NULL, TRUE);
-      $extra = array('pubDate' => gmdate('r', $commit->created));
+      $extra = array(
+        array('key' => 'pubDate', 'value' => gmdate('r', $commit->created)),
+        array('key' => 'guid',
+          'value' => 'CVS commit '. $commit->cid .' at '. $base_url,
+          'attributes' => array('isPermaLink' => 'false'),
+        ),
+      );
       $message = theme('cvs_commit_message', $commit);
       $items .= format_rss_item($title, $link, $message, $extra);
     }
