summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2012-09-26 16:53:48 -0700
committerVolker Lendecke <vl@samba.org>2012-09-27 07:57:03 +0200
commitaad669b53eca99f86c2e630bf3f2e9f594fed9c1 (patch)
tree8516c3feb0aa9f1e0fd63613bfc85da44762f6b5 /source3
parent965a2fb6b6bd0401baf273b28d0a5560cde6ebcc (diff)
downloadsamba-aad669b53eca99f86c2e630bf3f2e9f594fed9c1.tar.gz
samba-aad669b53eca99f86c2e630bf3f2e9f594fed9c1.tar.bz2
samba-aad669b53eca99f86c2e630bf3f2e9f594fed9c1.zip
s3: Fix some blank line endings
Autobuild-User(master): Volker Lendecke <vl@samba.org> Autobuild-Date(master): Thu Sep 27 07:57:03 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r--source3/winbindd/winbindd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c
index eab62a7028..eba5b091aa 100644
--- a/source3/winbindd/winbindd.c
+++ b/source3/winbindd/winbindd.c
@@ -1,4 +1,4 @@
-/*
+/*
Unix SMB/CIFS implementation.
Winbind daemon for ntdom nss module
@@ -216,7 +216,7 @@ static void winbindd_stdin_handler(struct tevent_context *ev,
char c;
if (read(0, &c, 1) != 1) {
bool *is_parent = talloc_get_type_abort(private_data, bool);
-
+
/* we have reached EOF on stdin, which means the
parent has exited. Shutdown the server */
DEBUG(0,("EOF on stdin (is_parent=%d)\n",
@@ -282,7 +282,7 @@ bool winbindd_setup_stdin_handler(bool parent, bool foreground)
if (!is_parent) {
return false;
}
-
+
*is_parent = parent;
/* if we are running in the foreground then look for
@@ -291,7 +291,7 @@ bool winbindd_setup_stdin_handler(bool parent, bool foreground)
*/
tevent_add_fd(winbind_event_context(), is_parent, 0, TEVENT_FD_READ, winbindd_stdin_handler, is_parent);
}
-
+
return true;
}