s3: Fix some nonempty blank lines
authorVolker Lendecke <vl@samba.org>
Mon, 22 Mar 2010 08:11:24 +0000 (09:11 +0100)
committerVolker Lendecke <vl@samba.org>
Mon, 22 Mar 2010 08:30:51 +0000 (09:30 +0100)
source3/smbd/files.c
source3/smbd/server.c

index 455666f8df71b4313cbcb4341415f751e7cf32e1..6b8e96e73373e9b26bcd5e0ce6552869e052bef0 100644 (file)
@@ -2,17 +2,17 @@
    Unix SMB/CIFS implementation.
    Files[] structure handling
    Copyright (C) Andrew Tridgell 1998
-   
+
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
-   
+
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
-   
+
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
@@ -142,7 +142,7 @@ NTSTATUS file_new(struct smb_request *req, connection_struct *conn,
 void file_close_conn(connection_struct *conn)
 {
        files_struct *fsp, *next;
-       
+
        for (fsp=Files;fsp;fsp=next) {
                next = fsp->next;
                if (fsp->conn == conn) {
@@ -158,7 +158,7 @@ void file_close_conn(connection_struct *conn)
 void file_close_pid(uint16 smbpid, int vuid)
 {
        files_struct *fsp, *next;
-       
+
        for (fsp=Files;fsp;fsp=next) {
                next = fsp->next;
                if ((fsp->file_pid == smbpid) && (fsp->vuid == vuid)) {
@@ -196,7 +196,7 @@ open files, %d are available.\n", request_max_open_files, real_max_open_files));
        SMB_ASSERT(real_max_open_files > 100);
 
        file_bmap = bitmap_allocate(real_max_open_files);
-       
+
        if (!file_bmap) {
                exit_server("out of memory in file_init");
        }
index d3fc499aef655fea14bd9fbc68efd9835e19a650..400edcf20258031b549ebcae3bc05b2d4e72bf95 100644 (file)
@@ -157,7 +157,6 @@ static void msg_inject_fault(struct messaging_context *msg,
        int sig;
 
        if (data->length != sizeof(sig)) {
-               
                DEBUG(0, ("Process %s sent bogus signal injection request\n",
                          procid_str_static(&src)));
                return;