summaryrefslogtreecommitdiff
path: root/misc/unix/getuuid.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/unix/getuuid.c')
-rw-r--r--misc/unix/getuuid.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/misc/unix/getuuid.c b/misc/unix/getuuid.c
index 4cd0d36db..547cc4e2a 100644
--- a/misc/unix/getuuid.c
+++ b/misc/unix/getuuid.c
@@ -105,12 +105,12 @@ static void get_random_info(unsigned char node[NODE_LENGTH])
} r;
- apr_MD5Init(&c);
+ apr_md5_init(&c);
r.pid = getpid();
gettimeofday(&r.t, (struct timezone *)0);
gethostname(r.hostname, 256);
- apr_MD5Update(&c, (const unsigned char *)&r, sizeof(r));
- apr_MD5Final(seed, &c);
+ apr_md5_update(&c, (const unsigned char *)&r, sizeof(r));
+ apr_md5_final(seed, &c);
memcpy(node, seed, NODE_LENGTH); /* use a subset of the seed bytes */
#endif
@@ -196,7 +196,7 @@ static void get_current_time(apr_uint64_t *timestamp)
*timestamp = time_now + fudge;
}
-void apr_get_uuid(apr_uuid_t *uuid)
+void apr_uuid_get(apr_uuid_t *uuid)
{
apr_uint64_t timestamp;
unsigned char *d = uuid->data;