summaryrefslogtreecommitdiff
path: root/source3/lib/util.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-02-09 15:20:24 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-02-10 16:45:14 +1100
commit474fbfb7b712fe6be61505ca1796d0a3442a618a (patch)
tree338531347e5c95994f4821f0400486f6e9838467 /source3/lib/util.c
parent45123530e52d9d096d5a01f02ba4672bd75b9305 (diff)
downloadsamba-474fbfb7b712fe6be61505ca1796d0a3442a618a.tar.gz
samba-474fbfb7b712fe6be61505ca1796d0a3442a618a.tar.bz2
samba-474fbfb7b712fe6be61505ca1796d0a3442a618a.zip
s3-lib: Remove unused is_myworkgroup()
Found by callcatcher: http://www.skynet.ie/~caolan/Packages/callcatcher.html Andrew Bartlett
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r--source3/lib/util.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index 4ae872aa3b..822db43fef 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -1215,23 +1215,6 @@ bool is_myname(const char *s)
}
/*******************************************************************
- Is the name specified our workgroup/domain.
- Returns true if it is equal, false otherwise.
-********************************************************************/
-
-bool is_myworkgroup(const char *s)
-{
- bool ret = False;
-
- if (strequal(s, lp_workgroup())) {
- ret=True;
- }
-
- DEBUG(8, ("is_myworkgroup(\"%s\") returns %d\n", s, ret));
- return(ret);
-}
-
-/*******************************************************************
we distinguish between 2K and XP by the "Native Lan Manager" string
WinXP => "Windows 2002 5.1"
WinXP 64bit => "Windows XP 5.2"