diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2013-07-17 09:56:56 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2013-07-17 14:03:54 +0200 |
commit | beac8bdd9be41c0bc17d85429ca74b4f6aa99a3e (patch) | |
tree | bb699ab539d197fe83c06bd908776dcbe6a8619a /src/dmon.c | |
parent | 98fb747e6ae7ccded2e8aa46154df5d834a72e1a (diff) | |
download | calcurse-beac8bdd9be41c0bc17d85429ca74b4f6aa99a3e.zip |
Rename io_file_exist{,s}()
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/dmon.c')
-rw-r--r-- | src/dmon.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -152,12 +152,12 @@ void dmon_start(int parent_exit_status) if (!io_dump_pid(path_dpid)) DMON_ABRT(_("Could not set lock file\n")); - if (!io_file_exist(path_conf)) + if (!io_file_exists(path_conf)) DMON_ABRT(_("Could not access \"%s\": %s\n"), path_conf, strerror(errno)); config_load(); - if (!io_file_exist(path_apts)) + if (!io_file_exists(path_apts)) DMON_ABRT(_("Could not access \"%s\": %s\n"), path_apts, strerror(errno)); apoint_llist_init(); |