diff options
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/filename.c | 6 | ||||
-rw-r--r-- | source3/smbd/vfs.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source3/smbd/filename.c b/source3/smbd/filename.c index 7bc8607400..bd783232f6 100644 --- a/source3/smbd/filename.c +++ b/source3/smbd/filename.c @@ -370,7 +370,7 @@ NTSTATUS unix_convert(TALLOC_CTX *ctx, start = smb_fname->base_name; /* - * If we're providing case insentive semantics or + * If we're providing case insensitive semantics or * the underlying filesystem is case insensitive, * then a case-normalized hit in the stat-cache is * authoratitive. JRA. @@ -388,7 +388,7 @@ NTSTATUS unix_convert(TALLOC_CTX *ctx, /* * Make sure "dirpath" is an allocated string, we use this for - * building the directories with asprintf and free it. + * building the directories with talloc_asprintf and free it. */ if ((dirpath == NULL) && (!(dirpath = talloc_strdup(ctx,"")))) { @@ -454,7 +454,7 @@ NTSTATUS unix_convert(TALLOC_CTX *ctx, /* * A special case - if we don't have any wildcards or mangling chars and are case - * sensitive or the underlying filesystem is case insentive then searching + * sensitive or the underlying filesystem is case insensitive then searching * won't help. */ diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index ee70a3d583..c636cbcb5e 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -929,7 +929,7 @@ NTSTATUS check_reduced_name(connection_struct *conn, const char *fname) status = NT_STATUS_OBJECT_PATH_NOT_FOUND; } - DEBUG(3,("check_reduce_named: " + DEBUG(3,("check_reduce_name: " "couldn't get realpath for " "%s (%s)\n", fname, |