summaryrefslogtreecommitdiff
path: root/source3/smbd/filename.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/smbd/filename.c')
-rw-r--r--source3/smbd/filename.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/source3/smbd/filename.c b/source3/smbd/filename.c
index 1d44c7498e..10e9583049 100644
--- a/source3/smbd/filename.c
+++ b/source3/smbd/filename.c
@@ -214,16 +214,18 @@ NTSTATUS unix_convert(TALLOC_CTX *ctx,
return NT_STATUS_NO_MEMORY;
}
- stream = strchr_m(name, ':');
+ if (!lp_posix_pathnames()) {
+ stream = strchr_m(name, ':');
- if (stream != NULL) {
- char *tmp = talloc_strdup(ctx, stream);
- if (tmp == NULL) {
- TALLOC_FREE(name);
- return NT_STATUS_NO_MEMORY;
+ if (stream != NULL) {
+ char *tmp = talloc_strdup(ctx, stream);
+ if (tmp == NULL) {
+ TALLOC_FREE(name);
+ return NT_STATUS_NO_MEMORY;
+ }
+ *stream = '\0';
+ stream = tmp;
}
- *stream = '\0';
- stream = tmp;
}
/*