diff options
-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 | ||