diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2020-12-04 06:12:26 +0100 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2020-12-04 06:12:26 +0100 |
commit | c674cde5690bf2cf2a7749c42255b197d835eea8 (patch) | |
tree | 1bdea85e4acd85c4a0710bb401ec05b5ca200fed | |
parent | 4638e0dfc3be720962990e5529587ee22d62f219 (diff) |
Be less verbose when parsing session directories
-rw-r--r-- | receiver.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -106,7 +106,7 @@ static void import_sessions(const char *dirname) { | |||
106 | while ((entry = readdir(dirp)) != NULL) { | 106 | while ((entry = readdir(dirp)) != NULL) { |
107 | // We expect a very specific format | 107 | // We expect a very specific format |
108 | if (entry->d_type != DT_REG || entry->d_namlen != 73) { | 108 | if (entry->d_type != DT_REG || entry->d_namlen != 73) { |
109 | fprintf(stderr, "Skipping wrong length file: %*s\n", entry->d_namlen, entry->d_name); | 109 | // fprintf(stderr, "Skipping wrong length file: %*s\n", entry->d_namlen, entry->d_name); |
110 | continue; | 110 | continue; |
111 | } | 111 | } |
112 | 112 | ||