From 8c6b0b61e5a19de3b1d710e84a7a773321b8a257 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 12 Jan 2011 18:12:29 +0100 Subject: s3: Fix some nonempty blank lines Autobuild-User: Volker Lendecke Autobuild-Date: Wed Jan 12 19:04:25 CET 2011 on sn-devel-104 --- source3/libads/ads_struct.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'source3/libads') diff --git a/source3/libads/ads_struct.c b/source3/libads/ads_struct.c index 7794952387..b6c8e995ed 100644 --- a/source3/libads/ads_struct.c +++ b/source3/libads/ads_struct.c @@ -3,17 +3,17 @@ ads (active directory) utility library Copyright (C) Andrew Tridgell 2001 Copyright (C) Andrew Bartlett 2001 - + 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 . */ @@ -56,7 +56,7 @@ char *ads_build_path(const char *realm, const char *sep, const char *field, int p=strtok_r(r, sep, &saveptr); if (p) { strlcat(ret, p, len); - + while ((p=strtok_r(NULL, sep, &saveptr)) != NULL) { int retval; char *s = NULL; @@ -93,7 +93,7 @@ char *ads_build_dn(const char *realm) char *ads_build_domain(const char *dn) { char *dnsdomain = NULL; - + /* result should always be shorter than the DN */ if ( (dnsdomain = SMB_STRDUP( dn )) == NULL ) { @@ -123,10 +123,10 @@ ADS_STRUCT *ads_init(const char *realm, { ADS_STRUCT *ads; int wrap_flags; - + ads = SMB_XMALLOC_P(ADS_STRUCT); ZERO_STRUCTP(ads); - + ads->server.realm = realm? SMB_STRDUP(realm) : NULL; ads->server.workgroup = workgroup ? SMB_STRDUP(workgroup) : NULL; ads->server.ldap_server = ldap_server? SMB_STRDUP(ldap_server) : NULL; @@ -194,7 +194,7 @@ void ads_destroy(ADS_STRUCT **ads) SAFE_FREE((*ads)->config.client_site_name); SAFE_FREE((*ads)->config.schema_path); SAFE_FREE((*ads)->config.config_path); - + ZERO_STRUCTP(*ads); if ( is_mine ) -- cgit