summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-04-16 14:16:40 +0200
committerVolker Lendecke <vl@samba.org>2010-04-17 12:01:18 +0200
commitb0b077f27c8f87dedf8fc7898c54e2c2575c1be6 (patch)
treea76711370bd419494d9334471b5598606938cb46
parent4567bf9df53e62c0f30279235d56d13cb38de190 (diff)
downloadsamba-b0b077f27c8f87dedf8fc7898c54e2c2575c1be6.tar.gz
samba-b0b077f27c8f87dedf8fc7898c54e2c2575c1be6.tar.bz2
samba-b0b077f27c8f87dedf8fc7898c54e2c2575c1be6.zip
s3: Fix some nonempty blank lines
-rw-r--r--source3/smbd/chgpasswd.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/smbd/chgpasswd.c b/source3/smbd/chgpasswd.c
index dcefc82bba..2cc2206337 100644
--- a/source3/smbd/chgpasswd.c
+++ b/source3/smbd/chgpasswd.c
@@ -3,17 +3,17 @@
Samba utility functions
Copyright (C) Andrew Tridgell 1992-1998
Copyright (C) Andrew Bartlett 2001-2004
-
+
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/>.
*/
@@ -651,7 +651,7 @@ bool check_lanman_password(char *user, uchar * pass1,
DEBUG(0, ("samu_new() failed!\n"));
return False;
}
-
+
become_root();
ret = pdb_getsampwnam(sampass, user);
unbecome_root();
@@ -661,7 +661,7 @@ bool check_lanman_password(char *user, uchar * pass1,
TALLOC_FREE(sampass);
return False;
}
-
+
acct_ctrl = pdb_get_acct_ctrl (sampass);
lanman_pw = pdb_get_lanman_passwd (sampass);
@@ -721,7 +721,7 @@ bool change_lanman_password(struct samu *sampass, uchar *pass2)
DEBUG(0,("change_lanman_password: no smb password entry.\n"));
return False;
}
-
+
acct_ctrl = pdb_get_acct_ctrl(sampass);
pwd = pdb_get_lanman_passwd(sampass);
@@ -1242,7 +1242,7 @@ NTSTATUS change_oem_password(struct samu *hnd, char *old_passwd, char *new_passw
* Conditional on lp_unix_password_sync() because we don't want
* to touch the unix db unless we have admin permission.
*/
-
+
if(lp_unix_password_sync() &&
!chgpasswd(username, pass, old_passwd, new_passwd, as_root)) {
TALLOC_FREE(pass);