summaryrefslogtreecommitdiff
path: root/source3/lib/util_str.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2005-08-12 22:59:35 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:00:31 -0500
commite04754b295acdea6d2ea365bb0a3935a5976a3a2 (patch)
tree8d49864c04e068f22dbef5c3851543b662a6c7c8 /source3/lib/util_str.c
parentac90571830dfa69211792d0eced9ff1b16508b88 (diff)
downloadsamba-e04754b295acdea6d2ea365bb0a3935a5976a3a2.tar.gz
samba-e04754b295acdea6d2ea365bb0a3935a5976a3a2.tar.bz2
samba-e04754b295acdea6d2ea365bb0a3935a5976a3a2.zip
r9282: Whitespace.
Jeremy. (This used to be commit 183a4705114da7c3662b71405457123ce35b5358)
Diffstat (limited to 'source3/lib/util_str.c')
-rw-r--r--source3/lib/util_str.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c
index 712a8a18fd..9b14dcfaf0 100644
--- a/source3/lib/util_str.c
+++ b/source3/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);
}
/**