Index: /trunk/src/VBox/Additions/linux/sharedfolders/vbsfmount.c
===================================================================
--- /trunk/src/VBox/Additions/linux/sharedfolders/vbsfmount.c	(revision 31202)
+++ /trunk/src/VBox/Additions/linux/sharedfolders/vbsfmount.c	(revision 31203)
@@ -29,5 +29,5 @@
 /** @todo Use defines for return values! */
 int vbsfmount_complete(const char *host_name, const char *mount_point,
-					   unsigned long flags, struct vbsf_mount_opts *opts)
+                       unsigned long flags, struct vbsf_mount_opts *opts)
 {
     FILE *f, *m;
@@ -35,5 +35,5 @@
     size_t size;
     struct mntent e;
-	int rc = 0;
+    int rc = 0;
 
     m = open_memstream(&buf, &size);
@@ -65,21 +65,21 @@
     f = setmntent(MOUNTED, "a+");
     if (!f)
-	{
-		rc = 2; /* Could not open mount table for update. */
-	}
-	else
-	{
-		e.mnt_fsname = (char*)host_name;
-		e.mnt_dir = (char*)mount_point;
-		e.mnt_type = "vboxsf";
-		e.mnt_opts = buf;
-		e.mnt_freq = 0;
-		e.mnt_passno = 0;
+    {
+        rc = 2; /* Could not open mount table for update. */
+    }
+    else
+    {
+        e.mnt_fsname = (char*)host_name;
+        e.mnt_dir = (char*)mount_point;
+        e.mnt_type = "vboxsf";
+        e.mnt_opts = buf;
+        e.mnt_freq = 0;
+        e.mnt_passno = 0;
 
-		if (addmntent(f, &e))
-			rc = 3;  /* Could not add an entry to the mount table. */
+        if (addmntent(f, &e))
+            rc = 3;  /* Could not add an entry to the mount table. */
 
-		endmntent(f);
-	}
+        endmntent(f);
+    }
 
     if (size > 0)
@@ -89,4 +89,4 @@
     }
 
-	return rc;
+    return rc;
 }
