svn commit: samba r9282 - in branches/SAMBA_3_0/source/lib: .

jra at samba.org jra at samba.org
Fri Aug 12 22:59:36 GMT 2005


Author: jra
Date: 2005-08-12 22:59:35 +0000 (Fri, 12 Aug 2005)
New Revision: 9282

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

Log:
Whitespace.
Jeremy.

Modified:
   branches/SAMBA_3_0/source/lib/util_str.c


Changeset:
Modified: branches/SAMBA_3_0/source/lib/util_str.c
===================================================================
--- branches/SAMBA_3_0/source/lib/util_str.c	2005-08-12 22:58:47 UTC (rev 9281)
+++ branches/SAMBA_3_0/source/lib/util_str.c	2005-08-12 22:59:35 UTC (rev 9282)
@@ -266,12 +266,12 @@
  **/
 BOOL strnequal(const char *s1,const char *s2,size_t n)
 {
-  if (s1 == s2)
-	  return(True);
-  if (!s1 || !s2 || !n)
-	  return(False);
+	if (s1 == s2)
+		return(True);
+	if (!s1 || !s2 || !n)
+		return(False);
   
-  return(StrnCaseCmp(s1,s2,n)==0);
+	return(StrnCaseCmp(s1,s2,n)==0);
 }
 
 /**
@@ -280,12 +280,12 @@
 
 BOOL strcsequal(const char *s1,const char *s2)
 {
-  if (s1 == s2)
-	  return(True);
-  if (!s1 || !s2)
-	  return(False);
+	if (s1 == s2)
+		return(True);
+	if (!s1 || !s2)
+		return(False);
   
-  return(strcmp(s1,s2)==0);
+	return(strcmp(s1,s2)==0);
 }
 
 /**



More information about the samba-cvs mailing list