trace-v3 #7

Open
rarias wants to merge 36 commits from trace-v3 into master
Showing only changes of commit 5e502b67d2 - Show all commits

View File

@ -105,6 +105,10 @@ trace_load(struct trace *trace, const char *tracedir)
return -1; return -1;
} }
/* Remove trailing slashes from tracedir */
path_remove_trailing(trace->tracedir);
tracedir = trace->tracedir;
/* Try to open the directory to catch permission errors */ /* Try to open the directory to catch permission errors */
DIR *dir = opendir(tracedir); DIR *dir = opendir(tracedir);
if (dir == NULL) { if (dir == NULL) {