summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2005-08-12 22:59:35 +0000
committerJeremy Allison <jra@samba.org>2005-08-12 22:59:35 +0000
commit335bffd2d585fc41009f2a0cc248c82052111ea6 (patch)
treef2700fde433c7bdf67f887cc7c72f9aa030751c3
parent3c4d097ca700ac3105301124a60ff2edde030afe (diff)
downloadsamba-335bffd2d585fc41009f2a0cc248c82052111ea6.tar.gz
samba-335bffd2d585fc41009f2a0cc248c82052111ea6.tar.xz
samba-335bffd2d585fc41009f2a0cc248c82052111ea6.zip
r9282: Whitespace.
Jeremy.
-rw-r--r--source/lib/util_str.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/lib/util_str.c b/source/lib/util_str.c
index 712a8a18fd3..9b14dcfaf0f 100644
--- a/source/lib/util_str.c
+++ b/source/lib/util_str.c
@@ -266,12 +266,12 @@ BOOL strequal(const char *s1, const char *s2)
**/
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 strnequal(const char *s1,const char *s2,size_t n)
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);
}
/**