summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorrse <rse@13f79535-47bb-0310-9956-ffa450edef68>2007-11-07 09:03:50 +0000
committerrse <rse@13f79535-47bb-0310-9956-ffa450edef68>2007-11-07 09:03:50 +0000
commit7af0b40fd7d1a453b2c48ed16dadf7d273b5e019 (patch)
tree0ef3fff91ddea60cd4e52091cc6a830856abe315 /crypto
parent7a4555e46b9c859537b20697315becaa5ae7d29d (diff)
downloadlibapr-util-7af0b40fd7d1a453b2c48ed16dadf7d273b5e019.tar.gz
be a little bit more precise: the bit which is set is actually the IEEE 802 MAC address _multicast_ bit
git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@592658 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'crypto')
-rw-r--r--crypto/getuuid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/getuuid.c b/crypto/getuuid.c
index 81036541..d973c0f9 100644
--- a/crypto/getuuid.c
+++ b/crypto/getuuid.c
@@ -102,7 +102,7 @@ static void get_random_info(unsigned char node[NODE_LENGTH])
static void get_pseudo_node_identifier(unsigned char *node)
{
get_random_info(node);
- node[0] |= 0x01; /* this designates a random node ID */
+ node[0] |= 0x01; /* this designates a random multicast node ID */
}
static void get_system_time(apr_uint64_t *uuid_time)