diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-02-19 02:38:43 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-02-19 02:38:43 +0000 |
commit | 81953ebe4118cd746c3214741460e6ed500fc076 (patch) | |
tree | 1e926fbaba389f3754c1e781cd2e0180ff4d152c /sys | |
parent | 47eacfbac1d5bf400ae4b59db8baa6b999965883 (diff) |
lzs is lzs, lzs is not deflate
Diffstat (limited to 'sys')
-rw-r--r-- | sys/crypto/xform.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/crypto/xform.c b/sys/crypto/xform.c index a1687fb607a..d67b6b2ee62 100644 --- a/sys/crypto/xform.c +++ b/sys/crypto/xform.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xform.c,v 1.21 2003/02/15 22:57:58 jason Exp $ */ +/* $OpenBSD: xform.c,v 1.22 2003/02/19 02:38:42 jason Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr) and @@ -228,7 +228,7 @@ struct comp_algo comp_algo_deflate = { }; struct comp_algo comp_algo_lzs = { - CRYPTO_DEFLATE_COMP, "LZS", + CRYPTO_LZS_COMP, "LZS", 90, lzs_dummy, lzs_dummy }; |