From ac20617c87bfa29fb163cc0a434ff82fd1215441 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 13 Oct 2020 11:38:49 +0200 Subject: [PATCH] smbd: Fix a typo Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- source3/smbd/files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/smbd/files.c b/source3/smbd/files.c index 999100a9e6c..d7def972d0e 100644 --- a/source3/smbd/files.c +++ b/source3/smbd/files.c @@ -876,7 +876,7 @@ size_t fsp_fullbasepath(struct files_struct *fsp, char *buf, size_t buflen) /* * Don't pass NULL buffer to snprintf (to satisfy static checker) * Some callers will call this function with NULL for buf and - * 0 for buflen in order to get length of fullbasepatch (without + * 0 for buflen in order to get length of fullbasepath (without * needing to allocate or write to buf) */ if (buf == NULL) { -- 2.34.1