diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-04-04 22:02:56 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-04-04 22:02:56 +0000 |
commit | 3006a8ce77dbffcd872c4886006c0e9826c568bb (patch) | |
tree | bd647611e239eb2a832ac1f89b285d97bd896046 /package/openwrt/mtd.c | |
parent | 9df49bbe4859c8bfa1d202d8a962fdd07f574104 (diff) |
fix reboot in mtd.c
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@560 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/openwrt/mtd.c')
-rw-r--r-- | package/openwrt/mtd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/openwrt/mtd.c b/package/openwrt/mtd.c index 645ad11809..6771b3c217 100644 --- a/package/openwrt/mtd.c +++ b/package/openwrt/mtd.c @@ -324,7 +324,7 @@ int main (int argc, char **argv) } if (boot) - reboot(0); + kill(1, 15); // send SIGTERM to init for reboot return 0; } |