diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-09-13 10:09:00 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-09-13 10:09:00 +0200 |
commit | ea54214002c09eeb4dd498d97a564471ec9993c5 (patch) | |
tree | 76a6a0cbfb9c8c00f6568b1e1a5b0febd9a1df7c /methods/ftp.cc | |
parent | 6932831f2ace44eb3e586186ac848c8ca9b690da (diff) |
reorder includes: add <config.h> if needed and include it at first
Diffstat (limited to 'methods/ftp.cc')
-rw-r--r-- | methods/ftp.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/methods/ftp.cc b/methods/ftp.cc index 97248f900..a445d767c 100644 --- a/methods/ftp.cc +++ b/methods/ftp.cc @@ -15,6 +15,8 @@ ##################################################################### */ /*}}}*/ // Include Files /*{{{*/ +#include <config.h> + #include <apt-pkg/fileutl.h> #include <apt-pkg/acquire-method.h> #include <apt-pkg/error.h> @@ -30,7 +32,6 @@ #include <errno.h> #include <stdarg.h> #include <iostream> -#include <apti18n.h> // Internet stuff #include <netinet/in.h> @@ -41,6 +42,7 @@ #include "rfc2553emu.h" #include "connect.h" #include "ftp.h" +#include <apti18n.h> /*}}}*/ using namespace std; |