diff options
author | Volker Lendecke <vl@samba.org> | 2011-08-02 16:44:53 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-08-02 19:18:08 +0200 |
commit | 77f5246f09138c86b8a391a7aa8a0522feb324f6 (patch) | |
tree | ca95ef3be8134e31d75584dd1e0258524b09db06 | |
parent | a68f16cb56923cb2287dfdbaf7b962a80a6cb306 (diff) | |
download | samba-77f5246f09138c86b8a391a7aa8a0522feb324f6.tar.gz |
s3: Fix some nonempty blank lines
-rw-r--r-- | source3/include/smb_macros.h | 6 | ||||
-rw-r--r-- | source3/smbd/close.c | 6 | ||||
-rw-r--r-- | source3/smbd/error.c | 6 | ||||
-rw-r--r-- | source3/smbd/oplock.c | 8 |
4 files changed, 13 insertions, 13 deletions
diff --git a/source3/include/smb_macros.h b/source3/include/smb_macros.h index aba1455864e..4e27de1b20e 100644 --- a/source3/include/smb_macros.h +++ b/source3/include/smb_macros.h @@ -5,17 +5,17 @@ Copyright (C) John H Terpstra 1996-1999 Copyright (C) Luke Kenneth Casson Leighton 1996-1999 Copyright (C) Paul Ashton 1998 - 1999 - + 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/>. */ diff --git a/source3/smbd/close.c b/source3/smbd/close.c index 43861b30456..b31daf366f5 100644 --- a/source3/smbd/close.c +++ b/source3/smbd/close.c @@ -167,14 +167,14 @@ static void notify_deferred_opens(struct messaging_context *msg_ctx, if (!should_notify_deferred_opens()) { return; } - + for (i=0; i<lck->num_share_modes; i++) { struct share_mode_entry *e = &lck->share_modes[i]; - + if (!is_deferred_open_entry(e)) { continue; } - + if (procid_is_me(&e->pid)) { /* * We need to notify ourself to retry the open. Do diff --git a/source3/smbd/error.c b/source3/smbd/error.c index 2fb4241968d..815b8579d2a 100644 --- a/source3/smbd/error.c +++ b/source3/smbd/error.c @@ -2,17 +2,17 @@ Unix SMB/CIFS implementation. error packet handling Copyright (C) Andrew Tridgell 1992-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/>. */ diff --git a/source3/smbd/oplock.c b/source3/smbd/oplock.c index 284b0321aa8..69a4dbb6c6b 100644 --- a/source3/smbd/oplock.c +++ b/source3/smbd/oplock.c @@ -4,17 +4,17 @@ Copyright (C) Andrew Tridgell 1992-1998 Copyright (C) Jeremy Allison 1998 - 2001 Copyright (C) Volker Lendecke 2005 - + 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/>. */ @@ -717,7 +717,7 @@ static void process_open_retry_message(struct messaging_context *msg_ctx, DATA_BLOB *data) { struct share_mode_entry msg; - + if (data->data == NULL) { DEBUG(0, ("Got NULL buffer\n")); return; |