missing brace in afs_get_sb
authorMichael Meffie <mmeffie@sinenomine.net>
Wed, 30 Dec 2009 18:02:31 +0000 (13:02 -0500)
committerRuss Allbery <rra|account-1000002@unknown>
Wed, 30 Dec 2009 23:22:52 +0000 (15:22 -0800)
Fix a syntax error when GET_SB_HAS_STRUCT_VFSMOUNT is
not true so we can build on older versions of linux.

Change-Id: I85aac803f68c3f3729abd32dfcecbc20ccac8ab9
Reviewed-on: http://gerrit.openafs.org/1049
Reviewed-by: Simon Wilkinson <sxw@inf.ed.ac.uk>
Reviewed-by: Russ Allbery <rra@stanford.edu>
Tested-by: Russ Allbery <rra@stanford.edu>

src/afs/LINUX/osi_vfsops.c

index 0b5b133..7996344 100644 (file)
@@ -67,7 +67,7 @@ afs_get_sb(struct file_system_type *fs_type, int flags,
 #else
 static struct superblock *
 afs_get_sb(struct file_system_type *fs_type, int flags,
-          const char *dev_name, void *data)
+          const char *dev_name, void *data) {
     return get_sb_nodev(fs_type, flags, data, afs_fill_super);
 }
 #endif