From: Mike Frysinger Date: Wed, 7 Jun 2006 21:37:49 +0000 (-0000) Subject: hint at where the Magic comes from X-Git-Tag: 1_2_0~185 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2fc534f3f1eb8d5dfab4669ab10650a73707024c;p=oweals%2Fbusybox.git hint at where the Magic comes from --- diff --git a/miscutils/watchdog.c b/miscutils/watchdog.c index 55fee8a40..b9eabb145 100644 --- a/miscutils/watchdog.c +++ b/miscutils/watchdog.c @@ -20,7 +20,7 @@ static int fd; static void watchdog_shutdown(int ATTRIBUTE_UNUSED unused) { - write(fd, "V", 1); /* Magic */ + write(fd, "V", 1); /* Magic, see watchdog-api.txt in kernel */ close(fd); exit(0); }