diff options
author | Denis Vlasenko | 2007-04-11 07:36:31 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-04-11 07:36:31 +0000 |
commit | 03fc408de6c40e9abca6dd14fde7938f28595bc6 (patch) | |
tree | 8d69be9d2981e269fbf7d0921c819210cec18029 /include | |
parent | d571c08c25707174979e7617a898c305c66aa78f (diff) | |
download | busybox-03fc408de6c40e9abca6dd14fde7938f28595bc6.zip busybox-03fc408de6c40e9abca6dd14fde7938f28595bc6.tar.gz |
fix typo in comment
Diffstat (limited to 'include')
-rw-r--r-- | include/busybox.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/busybox.h b/include/busybox.h index 290ad17..8b3647f 100644 --- a/include/busybox.h +++ b/include/busybox.h @@ -38,11 +38,11 @@ struct bb_applet { __extension__ enum bb_suid_t need_suid:8; #endif #if ENABLE_FEATURE_PREFER_APPLETS - /* true if instead if fork(); exec("applet"); waitpid(); + /* true if instead of fork(); exec("applet"); waitpid(); * one can do fork(); exit(applet_main(argc,argv)); waitpid(); */ unsigned char noexec; /* Even nicer */ - /* true if instead if fork(); exec("applet"); waitpid(); + /* true if instead of fork(); exec("applet"); waitpid(); * one can simply call applet_main(argc,argv); */ unsigned char nofork; #endif |