summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-03-22 09:11:24 +0100
committerVolker Lendecke <vl@samba.org>2010-03-22 09:30:51 +0100
commit678815081da171e10123b1f6768a554adc1bedb4 (patch)
tree5e4bd0afd79f9b5b009ae6e5d8bdecea1d69760c
parentc8a9533902036dc09e900fc2075765833502585b (diff)
downloadsamba-678815081da171e10123b1f6768a554adc1bedb4.tar.gz
samba-678815081da171e10123b1f6768a554adc1bedb4.tar.bz2
samba-678815081da171e10123b1f6768a554adc1bedb4.zip
s3: Fix some nonempty blank lines
-rw-r--r--source3/smbd/files.c12
-rw-r--r--source3/smbd/server.c1
2 files changed, 6 insertions, 7 deletions
diff --git a/source3/smbd/files.c b/source3/smbd/files.c
index 455666f8df..6b8e96e733 100644
--- a/source3/smbd/files.c
+++ b/source3/smbd/files.c
@@ -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");
}
diff --git a/source3/smbd/server.c b/source3/smbd/server.c
index d3fc499aef..400edcf202 100644
--- a/source3/smbd/server.c
+++ b/source3/smbd/server.c
@@ -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;