]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
smbd: Fix a typo (recieve->receive), reformat comment
authorVolker Lendecke <vl@samba.org>
Fri, 12 Feb 2021 11:49:22 +0000 (12:49 +0100)
committerJeremy Allison <jra@samba.org>
Tue, 9 Mar 2021 22:36:28 +0000 (22:36 +0000)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/smbd/server.c

index 792a04141fded8acb0c25116877cc8658ba3e284..f41ceb899d7e1e329718abdb8248f4c5f0dd02f9 100644 (file)
@@ -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);