From ae39cf94ed455b7a15cfda7609c6ac42b93d59a1 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Thu, 15 May 2003 16:52:46 +0000 Subject: [PATCH] STABLE12-pass-pointers-for-uuid-printing-20030422 pass pointers for uuid string building (cherry picked from commit ddd9554560a44314a029d7d2d59af8b7aaaec8ca) --- src/viced/host.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/viced/host.c b/src/viced/host.c index d87980f54..6b5d0c9f2 100644 --- a/src/viced/host.c +++ b/src/viced/host.c @@ -1059,9 +1059,9 @@ retry: { char uuid1[128], uuid2[128]; if (identP->valid) - afsUUID_to_string(identP->uuid, uuid1, 127); + afsUUID_to_string(&identP->uuid, uuid1, 127); if (host->interface) - afsUUID_to_string(host->interface->uuid, uuid2, 127); + afsUUID_to_string(&host->interface->uuid, uuid2, 127); ViceLog(0, ("CB: new identity for host %s:%d, deleting(%x %x %s %s)\n", afs_inet_ntoa_r(host->host, hoststr), ntohs(host->port), -- 2.39.5