Index: cvs.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cvslog/cvs.module,v
retrieving revision 1.161
diff -u -F^f -b -r1.161 cvs.module
--- cvs.module	20 Aug 2007 15:31:34 -0000	1.161
+++ cvs.module	22 Aug 2007 14:08:25 -0000
@@ -1196,7 +1196,7 @@ function theme_cvs_commit_message($commi
   $output .= '<div class="title">' . t('Commit !link by !name at !time',
     array(
       '!link' => l('#'. $commit->cid, 'cvs', NULL, 'commit='. $commit->cid),
-      '!name' => $commit->uid ? theme('username', $commit) : $commit->user,
+      '!name' => $commit->uid ? theme('username', $commit) : $commit->cvs_user,
       '!time' => format_date($commit->created, 'custom', 'H:i'),
     )) ."</div>\n";
   $output .= "<div class=\"files\">$commit->files</div>\n";
@@ -1272,7 +1272,7 @@ function cvs_show_messages_format($resul
     global $languages, $base_url;
 
     while ($commit = db_fetch_object($result)) {
-      $title = t('Commit !id by !user', array('!id' => $commit->cid, '!user' => $commit->user));
+      $title = t('Commit !id by !cvs_user', array('!id' => $commit->cid, '!user' => $commit->cvs_user));
       $link = url('cvs', "commit=$commit->cid", NULL, TRUE);
       $extra = array('pubDate' => gmdate('r', $commit->created));
       $message = theme('cvs_commit_message', $commit);
