From: Björn Jacke Date: Sat, 26 Oct 2019 00:41:09 +0000 (+0200) Subject: source3/modules/vfs_recycle.c: typo fixes X-Git-Tag: talloc-2.3.1~183 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12e71a745aedf6906b54dd03ff9d9a18c9d6b523;p=thirdparty%2Fsamba.git source3/modules/vfs_recycle.c: typo fixes Signed-off-by: Bjoern Jacke Reviewed-by: Martin Schwenke --- diff --git a/source3/modules/vfs_recycle.c b/source3/modules/vfs_recycle.c index 4a21bbf0a88..b40544ace31 100644 --- a/source3/modules/vfs_recycle.c +++ b/source3/modules/vfs_recycle.c @@ -282,7 +282,7 @@ static bool recycle_create_dir(vfs_handle_struct *handle, const char *dname) } } - /* Create directory tree if neccessary */ + /* Create directory tree if necessary */ for(token = strtok_r(tok_str, "/", &saveptr); token; token = strtok_r(NULL, "/", &saveptr)) { if (strlcat(new_dir, token, len+1) >= len+1) {