Return-Path: X-Original-To: apmail-activemq-commits-archive@www.apache.org Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CF0B710426 for ; Mon, 1 Jul 2013 17:01:04 +0000 (UTC) Received: (qmail 18642 invoked by uid 500); 1 Jul 2013 17:01:04 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 18603 invoked by uid 500); 1 Jul 2013 17:01:04 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 18595 invoked by uid 99); 1 Jul 2013 17:01:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Jul 2013 17:01:04 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Jul 2013 17:01:03 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 663452388B71; Mon, 1 Jul 2013 17:00:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1498569 - in /activemq/activemq-cpp/branches/3.7.x: ./ activemq-cpp/src/main/decaf/util/UUID.cpp Date: Mon, 01 Jul 2013 17:00:43 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20130701170043.663452388B71@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Mon Jul 1 17:00:43 2013 New Revision: 1498569 URL: http://svn.apache.org/r1498569 Log: fix for: https://issues.apache.org/jira/browse/AMQCPP-497 Modified: activemq/activemq-cpp/branches/3.7.x/ (props changed) activemq/activemq-cpp/branches/3.7.x/activemq-cpp/src/main/decaf/util/UUID.cpp Propchange: activemq/activemq-cpp/branches/3.7.x/ ------------------------------------------------------------------------------ Merged /activemq/activemq-cpp/trunk:r1498567 Modified: activemq/activemq-cpp/branches/3.7.x/activemq-cpp/src/main/decaf/util/UUID.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/branches/3.7.x/activemq-cpp/src/main/decaf/util/UUID.cpp?rev=1498569&r1=1498568&r2=1498569&view=diff ============================================================================== --- activemq/activemq-cpp/branches/3.7.x/activemq-cpp/src/main/decaf/util/UUID.cpp (original) +++ activemq/activemq-cpp/branches/3.7.x/activemq-cpp/src/main/decaf/util/UUID.cpp Mon Jul 1 17:00:43 2013 @@ -109,7 +109,7 @@ namespace util { clockSequence = (int) ((leastSigBits & 0x3FFF000000000000ULL) >> 48); // setup node field - node = (leastSigBits & 0x0000FFFFFFFFFFFFL); + node = (leastSigBits & 0x0000FFFFFFFFFFFFULL); } public: