Index: services/comment_service/comment_service.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/services/services/comment_service/Attic/comment_service.inc,v
retrieving revision 1.1.2.1.2.2
diff -u -r1.1.2.1.2.2 comment_service.inc
--- services/comment_service/comment_service.inc	5 Dec 2009 01:42:38 -0000	1.1.2.1.2.2
+++ services/comment_service/comment_service.inc	6 Feb 2010 04:42:25 -0000
@@ -19,8 +19,8 @@
  */
 function comment_service_save($comment) {
   // If the submitted comment does not contain a uid, set it to anonymous.
-  if (isset($comment->uid)) {
-    $uid = 0;
+  if (!isset($comment->uid)) {
+    $comment->uid = 0;
   }
 
   // If the submitted comment does not contain a nid, then return an error.
