From 5a0ee95b95d22f8eee7cc86d350fb0e60ab54b69 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 8 Feb 2011 23:08:21 +0100 Subject: [PATCH] s3: Fix some nonempty blank lines and some typos Autobuild-User: Volker Lendecke Autobuild-Date: Wed Feb 9 00:01:45 CET 2011 on sn-devel-104 --- source3/include/packet.h | 6 +++--- source3/lib/packet.c | 6 +++--- source3/lib/util_sock.c | 2 +- source3/rpc_server/srv_spoolss_util.c | 2 +- source3/utils/smbfilter.c | 14 +++++++------- source3/winbindd/winbindd_samr.c | 2 +- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/source3/include/packet.h b/source3/include/packet.h index 45a9bc2ef19..a77a1a7cbc4 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 . */ diff --git a/source3/lib/packet.c b/source3/lib/packet.c index fefb74a0c57..1abf35c51a5 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 . */ diff --git a/source3/lib/util_sock.c b/source3/lib/util_sock.c index 8b25e012c68..d0ff960a3c8 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 dc861f88109..db575746f81 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 136047adde9..3e683b96a18 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 . */ @@ -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 ef27d3828e8..d33a3097d61 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, -- 2.34.1