summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd/parse.y
diff options
context:
space:
mode:
authorGilles Chehade <gilles@cvs.openbsd.org>2012-08-26 13:38:44 +0000
committerGilles Chehade <gilles@cvs.openbsd.org>2012-08-26 13:38:44 +0000
commit09feef509309fa1500dd65dfd016766811b2e824 (patch)
tree9c68d4491af541188daf326e6dbbc048c734c917 /usr.sbin/smtpd/parse.y
parenta10ddaa6927e9019fd1ac0a1c5de462b3b90427e (diff)
- use the same compression algorithm, gzip, for message file and envelopes
- rename compress_zlib.c to compress_gzip.c with this commit it is possible to inspect a compressed queue with gzcat :)
Diffstat (limited to 'usr.sbin/smtpd/parse.y')
-rw-r--r--usr.sbin/smtpd/parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/parse.y b/usr.sbin/smtpd/parse.y
index 1dcb6a2c31c..1f118f2e476 100644
--- a/usr.sbin/smtpd/parse.y
+++ b/usr.sbin/smtpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.92 2012/08/25 23:35:09 chl Exp $ */
+/* $OpenBSD: parse.y,v 1.93 2012/08/26 13:38:43 gilles Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
@@ -310,7 +310,7 @@ compress : COMPRESS STRING {
$$ = $2;
}
| COMPRESS {
- $$ = "zlib";
+ $$ = "gzip";
}
| /* empty */ { $$ = NULL; }
;