diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-12 14:34:01 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-06-12 14:34:01 +0000 |
commit | 2f6a3179446c83c23347fc7f7aef05c51310c6db (patch) | |
tree | 61ed10280c728b437fb6acbedfdb431f8496f335 | |
parent | f81ac42689be490b86b3845f9dc772c8e3d048d5 (diff) | |
download | busybox-2f6a3179446c83c23347fc7f7aef05c51310c6db.tar.gz |
- fix stupid typo from last checkin
-rw-r--r-- | debianutils/start_stop_daemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debianutils/start_stop_daemon.c b/debianutils/start_stop_daemon.c index 3a0fbd2c6..3700506bf 100644 --- a/debianutils/start_stop_daemon.c +++ b/debianutils/start_stop_daemon.c @@ -159,7 +159,7 @@ static int do_stop(void) do_procinit(); if (cmdname) - what=cmdname;//strcpy(what, cmdname); + strcpy(what, cmdname); else if (execname) strcpy(what, execname); else if (pidfile) |