From 7ba9c3e564ef5bc6cce5d93ca00f8c46783535d3 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Sat, 23 Jun 2007 07:23:12 +0000 Subject: [PATCH] DEVEL15-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 (cherry picked from commit ec223f850b654365d13a7f8ae483c883d35413ab) --- 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 39d37d3ee..9bdf53484 100644 --- a/src/afs/afs_pioctl.c +++ b/src/afs/afs_pioctl.c @@ -199,7 +199,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 34c1159f1..8f7489fb3 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