From ec223f850b654365d13a7f8ae483c883d35413ab Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Sat, 23 Jun 2007 07:21:00 +0000 Subject: [PATCH] newuuid-fix-20070622 yeah, i should commit from places with better network if i'm going to need to edit in place, so i can see what i'm typing --- src/afs/afs_pioctl.c | 2 +- src/rx/rx_packet.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/afs/afs_pioctl.c b/src/afs/afs_pioctl.c index 3ddb35a5a..7c2185ed6 100644 --- a/src/afs/afs_pioctl.c +++ b/src/afs/afs_pioctl.c @@ -200,7 +200,7 @@ static int (*(CpioctlSw[])) () = { PBogus, /* 6 */ PBogus, /* 7 */ PBogus, /* 8 */ - PNewUUID, /* 9 */ + PNewUuid, /* 9 */ }; static int (*(OpioctlSw[])) () = { diff --git a/src/rx/rx_packet.c b/src/rx/rx_packet.c index 6daca6f8c..a94cddbab 100644 --- a/src/rx/rx_packet.c +++ b/src/rx/rx_packet.c @@ -2235,7 +2235,7 @@ rxi_SendPacket(struct rx_call *call, struct rx_connection *conn, #ifdef AFS_NT40_ENV code == -1 && WSAGetLastError() == WSAEHOSTUNREACH #elif defined(AFS_LINUX20_ENV) && defined(KERNEL) - code == -ENETUNRECH + code == -ENETUNREACH #elif defined(AFS_DARWIN_ENV) && defined(KERNEL) code == EHOSTUNREACH #else @@ -2427,7 +2427,7 @@ rxi_SendPacketList(struct rx_call *call, struct rx_connection *conn, #ifdef AFS_NT40_ENV code == -1 && WSAGetLastError() == WSAEHOSTUNREACH #elif defined(AFS_LINUX20_ENV) && defined(KERNEL) - code == -ENETUNRECH + code == -ENETUNREACH #elif defined(AFS_DARWIN_ENV) && defined(KERNEL) code == EHOSTUNREACH #else -- 2.39.5