X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=blobdiff_plain;f=src%2Fdirplex.c;h=75ff4a41806aab3ad7e436fb6b2b99e1c5e6c08b;hp=8e4ae11629a61bc695c03f53e8d3ba377a842add;hb=3e05e989dbb6375304b31ea562b9b3f7378a2353;hpb=a39d9e16527a796bdf15bf4bb8fab81aac24ffa1 diff --git a/src/dirplex.c b/src/dirplex.c index 8e4ae11..75ff4a4 100644 --- a/src/dirplex.c +++ b/src/dirplex.c @@ -466,6 +466,11 @@ static void handledir(struct hthead *req, int fd, char *path) ipath = NULL; if(!strchr(inm, '.') && ((dir = opendir(path)) != NULL)) { while((dent = readdir(dir)) != NULL) { + /* Ignore backup files. + * XXX: There is probably a better and more + * extensible way to do this. */ + if(dent->d_name[strlen(dent->d_name) - 1] == '~') + continue; if((p = strchr(dent->d_name, '.')) == NULL) continue; if(strncmp(dent->d_name, inm, strlen(inm))) @@ -583,6 +588,11 @@ static void serve(struct hthead *req, int fd) if(!strchr(p, '.') && ((dir = opendir(path)) != NULL)) { while((dent = readdir(dir)) != NULL) { buf = sprintf3("%s/%s", path, dent->d_name); + /* Ignore backup files. + * XXX: There is probably a better and more + * extensible way to do this. */ + if(dent->d_name[strlen(dent->d_name) - 1] == '~') + continue; if((p3 = strchr(dent->d_name, '.')) != NULL) *p3 = 0; if(strcmp(dent->d_name, p))