aboutsummaryrefslogtreecommitdiffstats
path: root/pacredir.c
diff options
context:
space:
mode:
Diffstat (limited to 'pacredir.c')
-rw-r--r--pacredir.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/pacredir.c b/pacredir.c
index 12bd03d..850b2a8 100644
--- a/pacredir.c
+++ b/pacredir.c
@@ -370,9 +370,8 @@ static int ahc_echo(void * cls,
goto response;
}
- /* process db file (and signature) request */
- if ((strlen(basename) > 3 && strcmp(basename + strlen(basename) - 3, ".db") == 0) ||
- (strlen(basename) > 7 && strcmp(basename + strlen(basename) - 7, ".db.sig") == 0)) {
+ /* process db file request */
+ if (strlen(basename) > 3 && strcmp(basename + strlen(basename) - 3, ".db") == 0) {
dbfile = 1;
/* get timestamp of local file */
filename = malloc(strlen(SYNCPATH) + strlen(basename) + 2);