svn commit: samba r17535 - in branches/SAMBA_3_0/source/libads: .

vlendec at samba.org vlendec at samba.org
Mon Aug 14 12:42:46 GMT 2006


Author: vlendec
Date: 2006-08-14 12:42:46 +0000 (Mon, 14 Aug 2006)
New Revision: 17535

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=17535

Log:
Reformatting, this had many tabs instead of ^$
Modified:
   branches/SAMBA_3_0/source/libads/ldap.c


Changeset:
Modified: branches/SAMBA_3_0/source/libads/ldap.c
===================================================================
--- branches/SAMBA_3_0/source/libads/ldap.c	2006-08-14 11:38:29 UTC (rev 17534)
+++ branches/SAMBA_3_0/source/libads/ldap.c	2006-08-14 12:42:46 UTC (rev 17535)
@@ -47,28 +47,28 @@
 /***************************************************************
  Signal function to tell us we timed out.
 ****************************************************************/
-                                                                                                                   
+
 static void gotalarm_sig(void)
 {
 	gotalarm = 1;
 }
-                                                                                                                   
+
  LDAP *ldap_open_with_timeout(const char *server, int port, unsigned int to)
 {
 	LDAP *ldp = NULL;
-                                                                                                                   
+
 	/* Setup timeout */
 	gotalarm = 0;
 	CatchSignal(SIGALRM, SIGNAL_CAST gotalarm_sig);
 	alarm(to);
 	/* End setup timeout. */
-                                                                                                                   
+
 	ldp = ldap_open(server, port);
-                                                                                                                   
+
 	/* Teardown timeout. */
 	CatchSignal(SIGALRM, SIGNAL_CAST SIG_IGN);
 	alarm(0);
-                                                                                                                   
+
 	return ldp;
 }
 



More information about the samba-cvs mailing list