summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2018-02-10 08:28:33 +0100
committerhorchi <vdr@jwendel.de>2018-02-10 08:28:33 +0100
commite3ab4d642e6038d2a65c2b45ed65d45385e31830 (patch)
tree0e3433e44b16ecef6e73ec844299b3f329b2471a /lib
parent8e2744bd67e944ec68204b7999c905662b1c6bbd (diff)
downloadvdr-epg-daemon-e3ab4d642e6038d2a65c2b45ed65d45385e31830.tar.gz
vdr-epg-daemon-e3ab4d642e6038d2a65c2b45ed65d45385e31830.tar.bz2
fixed log type
Diffstat (limited to 'lib')
-rw-r--r--lib/common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/common.c b/lib/common.c
index cccf8fa..69cc618 100644
--- a/lib/common.c
+++ b/lib/common.c
@@ -882,7 +882,7 @@ int isLink(const char* path)
if (lstat(path, &sb) == 0)
return S_ISLNK(sb.st_mode);
- tell(0, "Warning: Detecting file state for '%s' failed, error was '%s'", path, strerror(errno));
+ tell(0, "Warning: Can't detect file state for '%s' failed, error was '%s'", path, strerror(errno));
return false;
}
@@ -904,7 +904,7 @@ int fileSize(const char* path)
if (lstat(path, &sb) == 0)
return sb.st_size;
- tell(0, "Warning: Detecting size for '%s' failed, error was '%s'", path, strerror(errno));
+ tell(0, "Warning: Can't detect size for '%s' failed, error was '%s'", path, strerror(errno));
return 0;
}
@@ -916,7 +916,7 @@ time_t fileModTime(const char* path)
if (lstat(path, &sb) == 0)
return sb.st_mtime;
- tell(0, "Warning: Detecting modification timer for '%s' failed, error was '%s'", path, strerror(errno));
+ tell(0, "Warning: Can't detect modification time for '%s' failed, error was '%s'", path, strerror(errno));
return 0;
}