diff options
author | Guillem Jover <guillem@debian.org> | 2018-04-06 01:14:42 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2018-08-30 03:14:08 +0200 |
commit | eed3a9097deb1be5251cd31fbf9ec4d482a155d1 (patch) | |
tree | 54b594339b7a2e5f660737c629df42f6460fca38 /src/statcmd.c | |
parent | 6a5b37e98d8c0273203fc000a2539bc97101250f (diff) | |
download | dpkg-eed3a9097deb1be5251cd31fbf9ec4d482a155d1.tar.gz |
libdpkg: Move db-fsys code from src to lib/dpkg
This will prepare the ground for external programs to start using
libdpkg to access the dpkg fsys database via a proper API, instead
of messing with the on-disk layout in so many improper ways.
Diffstat (limited to 'src/statcmd.c')
-rw-r--r-- | src/statcmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/statcmd.c b/src/statcmd.c index af8a2f756..b7ca09eeb 100644 --- a/src/statcmd.c +++ b/src/statcmd.c @@ -43,10 +43,10 @@ #include <dpkg/path.h> #include <dpkg/dir.h> #include <dpkg/glob.h> +#include <dpkg/db-fsys.h> #include <dpkg/options.h> #include "main.h" -#include "filesdb.h" static const char printforhelp[] = N_( "Use --help for help about overriding file stat information."); |