aboutsummaryrefslogtreecommitdiff
path: root/sys/geom/uzip/g_uzip.c
diff options
context:
space:
mode:
authorCraig Rodrigues <rodrigc@FreeBSD.org>2015-04-22 14:38:58 +0000
committerCraig Rodrigues <rodrigc@FreeBSD.org>2015-04-22 14:38:58 +0000
commitd9db52256e500f4f4d86e0f32114c7c459429fbf (patch)
tree44c462be8b6eaae71303d84f50c8563dd734b705 /sys/geom/uzip/g_uzip.c
parente19e6781237224cbc5a103972cf773c0fbb097ac (diff)
downloadsrc-d9db52256e500f4f4d86e0f32114c7c459429fbf.tar.gz
src-d9db52256e500f4f4d86e0f32114c7c459429fbf.zip
Move zlib.c from net to libkern.
It is not network-specific code and would be better as part of libkern instead. Move zlib.h and zutil.h from net/ to sys/ Update includes to use sys/zlib.h and sys/zutil.h instead of net/ Submitted by: Steve Kiernan stevek@juniper.net Obtained from: Juniper Networks, Inc. GitHub Pull Request: https://github.com/freebsd/freebsd/pull/28 Relnotes: yes
Notes
Notes: svn path=/head/; revision=281855
Diffstat (limited to 'sys/geom/uzip/g_uzip.c')
-rw-r--r--sys/geom/uzip/g_uzip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/geom/uzip/g_uzip.c b/sys/geom/uzip/g_uzip.c
index c2ed64b365c8..732de9d5e8d0 100644
--- a/sys/geom/uzip/g_uzip.c
+++ b/sys/geom/uzip/g_uzip.c
@@ -38,9 +38,9 @@ __FBSDID("$FreeBSD$");
#include <sys/malloc.h>
#include <sys/sysctl.h>
#include <sys/systm.h>
+#include <sys/zlib.h>
#include <geom/geom.h>
-#include <net/zlib.h>
FEATURE(geom_uzip, "GEOM uzip read-only compressed disks support");