summaryrefslogtreecommitdiffstats
path: root/source3/auth/pass_check.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-08-21 14:42:24 +0200
committerVolker Lendecke <vl@samba.org>2010-08-28 11:12:13 +0200
commit2257a0cd86cf9bf187b08066b21db948709dd95d (patch)
tree9edb1e73e1fb265ac182d783a9ca64b9f8f92e38 /source3/auth/pass_check.c
parent636d1079891c898d62fe2567a8ac7c3d10df1c08 (diff)
downloadsamba-2257a0cd86cf9bf187b08066b21db948709dd95d.tar.gz
samba-2257a0cd86cf9bf187b08066b21db948709dd95d.tar.xz
samba-2257a0cd86cf9bf187b08066b21db948709dd95d.zip
s3: Fix some nonempty blank lines
Diffstat (limited to 'source3/auth/pass_check.c')
-rw-r--r--source3/auth/pass_check.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/source3/auth/pass_check.c b/source3/auth/pass_check.c
index a4bc6b509c0..4153cfed95e 100644
--- a/source3/auth/pass_check.c
+++ b/source3/auth/pass_check.c
@@ -1,18 +1,18 @@
-/*
+/*
Unix SMB/CIFS implementation.
Password checking
Copyright (C) Andrew Tridgell 1992-1998
-
+
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/>.
*/
@@ -576,7 +576,7 @@ static NTSTATUS password_check(const char *password, void *private_data)
#endif /* WITH_DFS */
#ifdef OSF1_ENH_SEC
-
+
ret = (strcmp(osf1_bigcrypt(password, get_this_salt()),
get_this_crypted()) == 0);
if (!ret) {
@@ -589,9 +589,9 @@ static NTSTATUS password_check(const char *password, void *private_data)
} else {
return NT_STATUS_WRONG_PASSWORD;
}
-
+
#endif /* OSF1_ENH_SEC */
-
+
#ifdef ULTRIX_AUTH
ret = (strcmp((char *)crypt16(password, get_this_salt()), get_this_crypted()) == 0);
if (ret) {
@@ -599,9 +599,9 @@ static NTSTATUS password_check(const char *password, void *private_data)
} else {
return NT_STATUS_WRONG_PASSWORD;
}
-
+
#endif /* ULTRIX_AUTH */
-
+
#ifdef LINUX_BIGCRYPT
ret = (linux_bigcrypt(password, get_this_salt(), get_this_crypted()));
if (ret) {
@@ -610,9 +610,9 @@ static NTSTATUS password_check(const char *password, void *private_data)
return NT_STATUS_WRONG_PASSWORD;
}
#endif /* LINUX_BIGCRYPT */
-
+
#if defined(HAVE_BIGCRYPT) && defined(HAVE_CRYPT) && defined(USE_BOTH_CRYPT_CALLS)
-
+
/*
* Some systems have bigcrypt in the C library but might not
* actually use it for the password hashes (HPUX 10.20) is
@@ -630,7 +630,7 @@ static NTSTATUS password_check(const char *password, void *private_data)
return NT_STATUS_WRONG_PASSWORD;
}
#else /* HAVE_BIGCRYPT && HAVE_CRYPT && USE_BOTH_CRYPT_CALLS */
-
+
#ifdef HAVE_BIGCRYPT
ret = (strcmp(bigcrypt(password, get_this_salt()), get_this_crypted()) == 0);
if (ret) {
@@ -639,7 +639,7 @@ static NTSTATUS password_check(const char *password, void *private_data)
return NT_STATUS_WRONG_PASSWORD;
}
#endif /* HAVE_BIGCRYPT */
-
+
#ifndef HAVE_CRYPT
DEBUG(1, ("Warning - no crypt available\n"));
return NT_STATUS_LOGON_FAILURE;
@@ -878,11 +878,11 @@ NTSTATUS pass_check(const struct passwd *pass,
/* last chance - all combinations of up to level chars upper! */
strlower_m(pass2);
-
+
nt_status = string_combinations(pass2, password_check, level, NULL);
if (NT_STATUS_IS_OK(nt_status)) {
return nt_status;
}
-
+
return NT_STATUS_WRONG_PASSWORD;
}