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

src/afs/afs_pioctl.c
src/rx/rx_packet.c

index 3ddb35a5ab1d89b4336401486dc27985a3539a4c..7c2185ed642a17b9d7cc71d76fbe105296645f17 100644 (file)
@@ -200,7 +200,7 @@ static int (*(CpioctlSw[])) () = {
         PBogus,                 /* 6 */
         PBogus,                 /* 7 */
         PBogus,                 /* 8 */
-        PNewUUID,               /* 9 */
+        PNewUuid,               /* 9 */
 };
 
 static int (*(OpioctlSw[])) () = {
index 6daca6f8cb5c60a7d5e490e925aaaa0ab0860e3e..a94cddbabbe7a18ca61de4eece797b762ac43280 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