[PATCH] 2.3.1 has broken fs/smbfs/inode.c

C. Scott Ananian (cananian@lesser-magoo.lcs.mit.edu)
Fri, 14 May 1999 03:31:43 -0400 (EDT)


One-line fix to linux/fs/smbfs/inode.c: someone forgot a semicolon.
[shame,shame]
--s
@ @
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-oOO-(_)-OOo-=-=-=-=-=
C. Scott Ananian: cananian@lcs.mit.edu / Declare the Truth boldly and
Laboratory for Computer Science/Crypto / without hindrance.
Massachusetts Institute of Technology /META-PARRESIAS AKOLUTOS:Acts 28:31
-.-. .-.. .. ..-. ..-. --- .-. -.. ... -.-. --- - - .- -. .- -. .. .- -.
PGP key available via finger and from http://www.pdos.lcs.mit.edu/~cananian

--- linux/fs/smbfs/inode.c~ Fri May 14 02:05:11 1999
+++ linux/fs/smbfs/inode.c Fri May 14 02:36:49 1999
@@ -88,7 +88,7 @@ smb_iget(struct super_block *sb, struct
result->i_op = &smb_dir_inode_operations;
else
result->i_op = NULL;
- insert_inode_hash(result)
+ insert_inode_hash(result);
return result;
}

-
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/