From: Volker Lendecke Date: Fri, 12 Feb 2021 11:49:22 +0000 (+0100) Subject: smbd: Fix a typo (recieve->receive), reformat comment X-Git-Tag: tevent-0.11.0~1635 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce9df5080d12c38d69e269a1434cd4c6838264a0;p=thirdparty%2Fsamba.git smbd: Fix a typo (recieve->receive), reformat comment Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 792a04141fd..f41ceb899d7 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -1770,8 +1770,11 @@ extern void build_options(bool screen); BlockSignals(True,SIGUSR2); #endif - /* POSIX demands that signals are inherited. If the invoking process has - * these signals masked, we will have problems, as we won't recieve them. */ + /* + * POSIX demands that signals are inherited. If the invoking + * process has these signals masked, we will have problems, as + * we won't receive them. + */ BlockSignals(False, SIGHUP); BlockSignals(False, SIGUSR1); BlockSignals(False, SIGTERM);