On 04/17/2013 01:45 PM, Hitoshi Mitake wrote: > + if (!access(tmp_config_path, F_OK)) > + return; > + > + sd_iprintf("remove temporal config file"); > + unlink(tmp_config_path); No need to access(tmp_config_path), just call unlink(tmp_config_path) is sufficient. Thanks, Yuan