fix typo in comment

This commit is contained in:
Denis Vlasenko 2007-04-11 07:36:31 +00:00
parent d571c08c25
commit 03fc408de6

View File

@ -38,11 +38,11 @@ struct bb_applet {
__extension__ enum bb_suid_t need_suid:8; __extension__ enum bb_suid_t need_suid:8;
#endif #endif
#if ENABLE_FEATURE_PREFER_APPLETS #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(); */ * one can do fork(); exit(applet_main(argc,argv)); waitpid(); */
unsigned char noexec; unsigned char noexec;
/* Even nicer */ /* 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); */ * one can simply call applet_main(argc,argv); */
unsigned char nofork; unsigned char nofork;
#endif #endif