Fix some nonempty blank lines
authorVolker Lendecke <vl@samba.org>
Sat, 18 Jul 2009 16:27:28 +0000 (18:27 +0200)
committerVolker Lendecke <vl@samba.org>
Fri, 24 Jul 2009 00:16:00 +0000 (02:16 +0200)
source3/smbd/vfs.c

index cd78c7962ee0d6e34da802ce0caf9565ef3ea265..2d9ae2348d29723dbb45ecb907e6365319f1260c 100644 (file)
@@ -45,7 +45,7 @@ static struct vfs_init_function_entry *vfs_find_backend_entry(const char *name)
        struct vfs_init_function_entry *entry = backends;
 
        DEBUG(10, ("vfs_find_backend_entry called for %s\n", name));
+
        while(entry) {
                if (strcmp(entry->name, name)==0) return entry;
                entry = entry->next;
@@ -116,7 +116,7 @@ bool vfs_init_custom(connection_struct *conn, const char *vfs_object)
        int i;
        vfs_handle_struct *handle;
        const struct vfs_init_function_entry *entry;
-       
+
        if (!conn||!vfs_object||!vfs_object[0]) {
                DEBUG(0,("vfs_init_custon() called with NULL pointer or emtpy vfs_object!\n"));
                return False;
@@ -316,7 +316,7 @@ bool smbd_vfs_init(connection_struct *conn)
        const char **vfs_objects;
        unsigned int i = 0;
        int j = 0;
-       
+
        /* Normal share - initialise with disk access functions */
        vfs_init_default(conn);
        vfs_objects = lp_vfs_objects(SNUM(conn));
@@ -324,7 +324,7 @@ bool smbd_vfs_init(connection_struct *conn)
        /* Override VFS functions if 'vfs object' was not specified*/
        if (!vfs_objects || !vfs_objects[0])
                return True;
-       
+
        for (i=0; vfs_objects[i] ;) {
                i++;
        }