summaryrefslogtreecommitdiff
path: root/source3/lib/util.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-11-27 13:10:48 +0100
committerVolker Lendecke <vl@samba.org>2009-11-29 11:22:04 +0100
commit9009277b76cfee708954e2b4c7172b955ad0c633 (patch)
treef4ea606645f6c642cbd928bb9db6046cb62bc28d /source3/lib/util.c
parent66e6439b7bf19bec1cc8a59667253b68dc0f3ce9 (diff)
downloadsamba-9009277b76cfee708954e2b4c7172b955ad0c633.tar.gz
samba-9009277b76cfee708954e2b4c7172b955ad0c633.tar.bz2
samba-9009277b76cfee708954e2b4c7172b955ad0c633.zip
s3: "socket_exist" only looks at the mode
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r--source3/lib/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index 0351587131..ef16757814 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -546,7 +546,7 @@ bool file_exist_stat(const char *fname,SMB_STRUCT_STAT *sbuf)
bool socket_exist(const char *fname)
{
SMB_STRUCT_STAT st;
- if (sys_stat(fname, &st, lp_fake_dir_create_times()) != 0)
+ if (sys_stat(fname, &st, false) != 0)
return(False);
return S_ISSOCK(st.st_ex_mode);