summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_creds.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-08-02 22:28:49 +0200
committerVolker Lendecke <vl@samba.org>2009-08-02 22:33:56 +0200
commit4fa28af91db993e3d7d2996287dba97247b87e55 (patch)
treedb136109c7f4fe7fd2a81332691b7e33e8781d31 /source3/winbindd/winbindd_creds.c
parent20d93b5b604da8a81d6435983fe2e3c33673b06c (diff)
downloadsamba-4fa28af91db993e3d7d2996287dba97247b87e55.tar.gz
samba-4fa28af91db993e3d7d2996287dba97247b87e55.tar.bz2
samba-4fa28af91db993e3d7d2996287dba97247b87e55.zip
Fix some nonempty blank lines
Diffstat (limited to 'source3/winbindd/winbindd_creds.c')
-rw-r--r--source3/winbindd/winbindd_creds.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/winbindd/winbindd_creds.c b/source3/winbindd/winbindd_creds.c
index 2f64f8b689..98a16ee937 100644
--- a/source3/winbindd/winbindd_creds.c
+++ b/source3/winbindd/winbindd_creds.c
@@ -65,23 +65,23 @@ NTSTATUS winbindd_store_creds(struct winbindd_domain *domain,
DOM_SID cred_sid;
if (info3 != NULL) {
-
+
DOM_SID sid;
sid_copy(&sid, info3->base.domain_sid);
sid_append_rid(&sid, info3->base.rid);
sid_copy(&cred_sid, &sid);
info3->base.user_flags |= NETLOGON_CACHED_ACCOUNT;
-
+
} else if (user_sid != NULL) {
-
+
sid_copy(&cred_sid, user_sid);
-
+
} else if (user != NULL) {
-
+
/* do lookup ourself */
enum lsa_SidType type;
-
+
if (!lookup_cached_name(mem_ctx,
domain->name,
user,
@@ -92,7 +92,7 @@ NTSTATUS winbindd_store_creds(struct winbindd_domain *domain,
} else {
return NT_STATUS_INVALID_PARAMETER;
}
-
+
if (pass) {
int count = 0;