]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
DEVEL15-newuuid-fix-20070622
authorDerrick Brashear <shadow@dementia.org>
Sat, 23 Jun 2007 07:23:12 +0000 (07:23 +0000)
committerDerrick Brashear <shadow@dementia.org>
Sat, 23 Jun 2007 07:23:12 +0000 (07:23 +0000)
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
src/rx/rx_packet.c

index 39d37d3eedabe8247edc7457a7d20936176c8790..9bdf5348445bb2c35ab73c230297e946d5e14dd0 100644 (file)
@@ -199,7 +199,7 @@ static int (*(CpioctlSw[])) () = {
     PBogus,                    /* 6 */
     PBogus,                    /* 7 */
     PBogus,                    /* 8 */
-    PNewUUID,                   /* 9 */ 
+    PNewUuid,                   /* 9 */ 
 };
 
 static int (*(OpioctlSw[])) () = {
index 34c1159f178788a62b4b0e1052a43b1b738caf9f..8f7489fb37ca139063f1637ac8974fb9dab19e01 100644 (file)
@@ -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