pre-2.3.1-5 smbfs typo

Pete Clements (clem@clem.digital.net)
Thu, 13 May 1999 19:41:32 -0400 (EDT)


FYI:
gcc -D__KERNEL__ -I/hdb3/usr/src/linux-2.3.1/include -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -pipe -fno-strength-reduce -m486 -malign-loops=2 -malign-jumps=2 -malign-functions=2 -DCPU=586 -c -o inode.o inode.c
inode.c: In function `smb_iget':
inode.c:92: parse error before `return'
inode.c:93: warning: control reaches end of non-void function
make[3]: *** [inode.o] Error 1
make[3]: Leaving directory `/hdb3/usr/src/linux-2.3.1/fs/smbfs'

--- inode.c.old Thu May 13 18:53:14 1999
+++ inode.c Thu May 13 19:22:39 1999
@@ -88,7 +88,7 @@
result->i_op = &smb_dir_inode_operations;
else
result->i_op = NULL;
- insert_inode_hash(result)
+ insert_inode_hash(result);
return result;
}

-- 
Pete Clements 
clem@clem.digital.net

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu Please read the FAQ at http://www.tux.org/lkml/