From 4ad0e4d210b4be59195d73760f31e07c38b71a3f Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 18 Oct 2020 17:40:30 +0200 Subject: [PATCH] libsmb: Fix a typo Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- source3/libsmb/clidfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/libsmb/clidfs.c b/source3/libsmb/clidfs.c index 09c9b8958e3..6a1b8e8707e 100644 --- a/source3/libsmb/clidfs.c +++ b/source3/libsmb/clidfs.c @@ -1057,7 +1057,7 @@ NTSTATUS cli_resolve_path(TALLOC_CTX *ctx, if (extrapath && strlen(extrapath) > 0) { /* EMC Celerra NAS version 5.6.50 (at least) doesn't appear to */ - /* put the trailing \ on the path, so to be save we put one in if needed */ + /* put the trailing \ on the path, so to be safe we put one in if needed */ if (extrapath[strlen(extrapath)-1] != '\\' && **pp_targetpath != '\\') { *pp_targetpath = talloc_asprintf(ctx, "%s\\%s", -- 2.47.3