--- main.c.0 2004-10-19 01:03:51.000000000 +0900 +++ main.c 2009-05-12 23:24:31.000000000 +0900 @@ -285,7 +285,7 @@ queue_fd(int fd) first_queue_fd = qfd; } -int main(int argc, char **argv) +int ORG_main(int argc, char **argv) { MonitorFD *monv = NULL; int monc = 0; @@ -559,3 +559,13 @@ replaced by the name of the directory th exit(EXIT_SUCCESS); } + +int main(int dummy_argc, char **dummy_argv) +{ + static char *argv[] = { + "/usr/local/sbin/yfitond", "-CDMRBr", "/etc", "-e", + "/usr/local/sbin/dirnotify.sh", "{}", NULL, + }; + ORG_main(6, argv); + return 0; +}