Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 50325 invoked from network); 9 Jul 2007 06:27:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Jul 2007 06:27:47 -0000 Received: (qmail 79799 invoked by uid 500); 9 Jul 2007 06:27:49 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 79579 invoked by uid 500); 9 Jul 2007 06:27:49 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 79568 invoked by uid 500); 9 Jul 2007 06:27:49 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 79565 invoked by uid 99); 9 Jul 2007 06:27:49 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 08 Jul 2007 23:27:49 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 08 Jul 2007 23:27:45 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 4D0F11A981A; Sun, 8 Jul 2007 23:27:25 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r554532 - /webservices/axis2/trunk/c/util/src/platforms/unix/uuid_gen_unix.c Date: Mon, 09 Jul 2007 06:27:25 -0000 To: axis2-cvs@ws.apache.org From: samisa@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070709062725.4D0F11A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: samisa Date: Sun Jul 8 23:27:24 2007 New Revision: 554532 URL: http://svn.apache.org/viewvc?view=rev&rev=554532 Log: Fixed the default mac addr 0 case Modified: webservices/axis2/trunk/c/util/src/platforms/unix/uuid_gen_unix.c Modified: webservices/axis2/trunk/c/util/src/platforms/unix/uuid_gen_unix.c URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/platforms/unix/uuid_gen_unix.c?view=diff&rev=554532&r1=554531&r2=554532 ============================================================================== --- webservices/axis2/trunk/c/util/src/platforms/unix/uuid_gen_unix.c (original) +++ webservices/axis2/trunk/c/util/src/platforms/unix/uuid_gen_unix.c Sun Jul 8 23:27:24 2007 @@ -255,7 +255,7 @@ else { for (i = 0; i < 6; i++) - buffer[i] = (unsigned char)(AXIS2_LOCAL_MAC_ADDR[i]); + buffer[i] = (unsigned char)((AXIS2_LOCAL_MAC_ADDR[i]) - '0'); } close(s); return buffer; --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org