summaryrefslogtreecommitdiff
path: root/busybox/files/busybox-udhcpd
diff options
context:
space:
mode:
Diffstat (limited to 'busybox/files/busybox-udhcpd')
-rw-r--r--busybox/files/busybox-udhcpd4
1 files changed, 2 insertions, 2 deletions
diff --git a/busybox/files/busybox-udhcpd b/busybox/files/busybox-udhcpd
index 71a87afeab..c43903e8dc 100644
--- a/busybox/files/busybox-udhcpd
+++ b/busybox/files/busybox-udhcpd
@@ -15,12 +15,12 @@ case "$1" in
echo "error: /etc/udhcpd.conf is missing."
exit 1
fi
- start-stop-daemon -S -b -n $NAME -a $DAEMON -- $ARGS
+ /sbin/start-stop-daemon -S -b -n $NAME -a $DAEMON -- $ARGS
echo "done."
;;
stop)
echo -n "stopping $DESC: $NAME... "
- start-stop-daemon -K -n $NAME
+ /sbin/start-stop-daemon -K -n $NAME
echo "done."
;;
restart)