From 285176cbc9e77c6f70aabbc33bae37d35ffe808a Mon Sep 17 00:00:00 2001
From: Volker Lendecke <vl@samba.org>
Date: Sun, 4 Jul 2010 11:02:21 +0200
Subject: s3: Fix some nonempty blank lines

---
 source3/utils/smbget.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/source3/utils/smbget.c b/source3/utils/smbget.c
index 4dd573afd4..d728b2b7a7 100644
--- a/source3/utils/smbget.c
+++ b/source3/utils/smbget.c
@@ -7,12 +7,12 @@
    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 @@ static int smb_download_dir(const char *base, const char *name, int resume)
 
 	while(*relname == '/')relname++;
 	mkdir(relname, 0755);
-	
+
 	tmpname = SMB_STRDUP(name);
 
 	while((dirent = smbc_readdir(dirhandle))) {
@@ -179,7 +179,7 @@ static int smb_download_dir(const char *base, const char *name, int resume)
 		case SMBC_COMMS_SHARE:
 			if(!quiet)printf("Ignoring comms share %s\n", dirent->name);
 			break;
-			
+
 		case SMBC_IPC_SHARE:
 			if(!quiet)printf("Ignoring ipc$ share %s\n", dirent->name);
 			break;
@@ -198,7 +198,7 @@ static int smb_download_dir(const char *base, const char *name, int resume)
 			smbc_closedir(dirhandle);
 			return 1;
 		}
-		
+
 		if(chmod(relname, remotestat.st_mode) < 0) {
 			fprintf(stderr, "Unable to change mode of local dir %s to %o\n", relname,
 				(unsigned int)remotestat.st_mode);
@@ -247,7 +247,7 @@ static void print_progress(const char *name, time_t start, time_t now, off_t sta
 	if (len == -1) {
 		return;
 	}
-	
+
 	if(columns) {
 		int required = strlen(name), available = columns - len - strlen("[] ");
 		if(required > available) {
@@ -277,7 +277,7 @@ static int smb_download_file(const char *base, const char *name, int recursive,
 	struct stat localstat, remotestat;
 
 	snprintf(path, SMB_MAXPATHLEN-1, "%s%s%s", base, (*base && *name && name[0] != '/' && base[strlen(base)-1] != '/')?"/":"", name);
-	
+
 	remotehandle = smbc_open(path, O_RDONLY, 0755);
 
 	if(remotehandle < 0) {
@@ -323,7 +323,7 @@ static int smb_download_file(const char *base, const char *name, int recursive,
 	} else newpath = name;
 
 	if(newpath[0] == '/')newpath++;
-	
+
 	/* Open local file according to the mode */
 	if(update) {
 		/* if it is up-to-date, skip */
@@ -350,7 +350,7 @@ static int smb_download_file(const char *base, const char *name, int recursive,
 			smbc_close(remotehandle);
 			return 1;
 		}
-	
+
 		if (fstat(localhandle, &localstat) != 0) {
 			fprintf(stderr, "Can't fstat %s: %s\n", newpath, strerror(errno));
 			smbc_close(remotehandle);
@@ -652,7 +652,7 @@ int main(int argc, const char **argv)
 			CONST_DISCARD(char *, "smb_encrypt_level"),
 			"require");
 	}
-	
+
 	columns = get_num_cols();
 
 	total_start_time = time(NULL);
-- 
cgit