summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-02-08 23:08:21 +0100
committerVolker Lendecke <vlendec@samba.org>2011-02-09 00:01:45 +0100
commit5a0ee95b95d22f8eee7cc86d350fb0e60ab54b69 (patch)
tree6c9de0d8f6754e4307e4afac8cf3ab111fa7df57
parent698d339ffd8abf59f0f000d4155241c267975c68 (diff)
downloadsamba-5a0ee95b95d22f8eee7cc86d350fb0e60ab54b69.tar.gz
samba-5a0ee95b95d22f8eee7cc86d350fb0e60ab54b69.tar.bz2
samba-5a0ee95b95d22f8eee7cc86d350fb0e60ab54b69.zip
s3: Fix some nonempty blank lines and some typos
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Wed Feb 9 00:01:45 CET 2011 on sn-devel-104
-rw-r--r--source3/include/packet.h6
-rw-r--r--source3/lib/packet.c6
-rw-r--r--source3/lib/util_sock.c2
-rw-r--r--source3/rpc_server/srv_spoolss_util.c2
-rw-r--r--source3/utils/smbfilter.c14
-rw-r--r--source3/winbindd/winbindd_samr.c2
6 files changed, 16 insertions, 16 deletions
diff --git a/source3/include/packet.h b/source3/include/packet.h
index 45a9bc2ef1..a77a1a7cbc 100644
--- a/source3/include/packet.h
+++ b/source3/include/packet.h
@@ -2,17 +2,17 @@
Unix SMB/CIFS implementation.
Packet handling
Copyright (C) Volker Lendecke 2007
-
+
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/lib/packet.c b/source3/lib/packet.c
index fefb74a0c5..1abf35c51a 100644
--- a/source3/lib/packet.c
+++ b/source3/lib/packet.c
@@ -2,17 +2,17 @@
Unix SMB/CIFS implementation.
Packet handling
Copyright (C) Volker Lendecke 2007
-
+
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/lib/util_sock.c b/source3/lib/util_sock.c
index 8b25e012c6..d0ff960a3c 100644
--- a/source3/lib/util_sock.c
+++ b/source3/lib/util_sock.c
@@ -111,7 +111,7 @@ char *print_canonical_sockaddr(TALLOC_CTX *ctx,
} else {
dest = talloc_asprintf(ctx, "%s", addr);
}
-
+
return dest;
}
diff --git a/source3/rpc_server/srv_spoolss_util.c b/source3/rpc_server/srv_spoolss_util.c
index dc861f8810..db575746f8 100644
--- a/source3/rpc_server/srv_spoolss_util.c
+++ b/source3/rpc_server/srv_spoolss_util.c
@@ -208,7 +208,7 @@ static uint32_t winreg_printer_rev_changeid(void)
#else
/*
* This setting seems to work well but is too untested
- * to replace the above calculation. Left in for experiementation
+ * to replace the above calculation. Left in for experimentation
* of the reader --jerry (Tue Mar 12 09:15:05 CST 2002)
*/
return tv.tv_sec * 10 + tv.tv_usec / 100000;
diff --git a/source3/utils/smbfilter.c b/source3/utils/smbfilter.c
index 136047adde..3e683b96a1 100644
--- a/source3/utils/smbfilter.c
+++ b/source3/utils/smbfilter.c
@@ -2,17 +2,17 @@
Unix SMB/CIFS implementation.
SMB filter/socket plugin
Copyright (C) Andrew Tridgell 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/>.
*/
@@ -193,14 +193,14 @@ static void filter_child(int c, struct sockaddr_storage *dest_ss)
while (c != -1 || s != -1) {
fd_set fds;
int num;
-
+
FD_ZERO(&fds);
if (s != -1) FD_SET(s, &fds);
if (c != -1) FD_SET(c, &fds);
num = sys_select_intr(MAX(s+1, c+1),&fds,NULL,NULL,NULL);
if (num <= 0) continue;
-
+
if (c != -1 && FD_ISSET(c, &fds)) {
size_t len;
if (!NT_STATUS_IS_OK(receive_smb_raw(
@@ -247,7 +247,7 @@ static void start_filter(char *desthost)
zero_sockaddr(&my_ss);
s = open_socket_in(SOCK_STREAM, 445, 0, &my_ss, True);
-
+
if (s == -1) {
d_printf("bind failed\n");
exit(1);
@@ -267,7 +267,7 @@ static void start_filter(char *desthost)
int num;
struct sockaddr_storage ss;
socklen_t in_addrlen = sizeof(ss);
-
+
FD_ZERO(&fds);
FD_SET(s, &fds);
diff --git a/source3/winbindd/winbindd_samr.c b/source3/winbindd/winbindd_samr.c
index ef27d3828e..d33a3097d6 100644
--- a/source3/winbindd/winbindd_samr.c
+++ b/source3/winbindd/winbindd_samr.c
@@ -141,7 +141,7 @@ static NTSTATUS open_internal_lsa_pipe(TALLOC_CTX *mem_ctx,
}
}
- /* create a samr connection */
+ /* create a lsa connection */
status = rpc_pipe_open_interface(mem_ctx,
&ndr_table_lsarpc.syntax_id,
server_info,