diff mbox series

[ovs-dev] trivial: Fix typo in comments.

Message ID 1584975557-27925-1-git-send-email-u9012063@gmail.com
State Accepted
Commit c59922767ea3812763686613444a342e5daa67f7
Headers show
Series [ovs-dev] trivial: Fix typo in comments. | expand

Commit Message

William Tu March 23, 2020, 2:59 p.m. UTC
s/daemon_complete/daemonize_complete/

Signed-off-by: William Tu <u9012063@gmail.com>
---
 lib/daemon-unix.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Ben Pfaff March 23, 2020, 3:17 p.m. UTC | #1
On Mon, Mar 23, 2020 at 07:59:17AM -0700, William Tu wrote:
> s/daemon_complete/daemonize_complete/
> 
> Signed-off-by: William Tu <u9012063@gmail.com>

Thanks.

Acked-by: Ben Pfaff <blp@ovn.org>
William Tu March 23, 2020, 3:27 p.m. UTC | #2
On Mon, Mar 23, 2020 at 8:17 AM Ben Pfaff <blp@ovn.org> wrote:
>
> On Mon, Mar 23, 2020 at 07:59:17AM -0700, William Tu wrote:
> > s/daemon_complete/daemonize_complete/
> >
> > Signed-off-by: William Tu <u9012063@gmail.com>
>
> Thanks.
>
> Acked-by: Ben Pfaff <blp@ovn.org>
Thanks, applied to master.
William
diff mbox series

Patch

diff --git a/lib/daemon-unix.c b/lib/daemon-unix.c
index 7e48630f0e93..6b2a5b9bd4e6 100644
--- a/lib/daemon-unix.c
+++ b/lib/daemon-unix.c
@@ -434,8 +434,8 @@  monitor_daemon(pid_t daemon_pid)
 /* If daemonization is configured, then starts daemonization, by forking and
  * returning in the child process.  The parent process hangs around until the
  * child lets it know either that it completed startup successfully (by calling
- * daemon_complete()) or that it failed to start up (by exiting with a nonzero
- * exit code). */
+ * daemonize_complete()) or that it failed to start up (by exiting with a
+ * nonzero exit code). */
 void
 daemonize_start(bool access_datapath)
 {