diff options
author | Timothy Pearson <[email protected]> | 2014-10-12 17:56:39 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-12 17:56:39 -0500 |
commit | e2c5ea4cdad7dbb560be87a7d3c894e980b5ab6f (patch) | |
tree | b2717634a496f982c82b13c6aa67252caad85268 /tdeioslave/smtp/smtp.cc | |
parent | 1346f6898707e6a4d95abee07c3d1608fc056998 (diff) | |
parent | 68cfc4fec0fed7ef4da9f03da68bd61900654ee3 (diff) | |
download | tdebase-e2c5ea4cdad7dbb560be87a7d3c894e980b5ab6f.tar.gz tdebase-e2c5ea4cdad7dbb560be87a7d3c894e980b5ab6f.zip |
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tdebase
Diffstat (limited to 'tdeioslave/smtp/smtp.cc')
-rw-r--r-- | tdeioslave/smtp/smtp.cc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tdeioslave/smtp/smtp.cc b/tdeioslave/smtp/smtp.cc index 43c15ecd2..00dff3684 100644 --- a/tdeioslave/smtp/smtp.cc +++ b/tdeioslave/smtp/smtp.cc @@ -30,6 +30,11 @@ #include <config.h> +#ifdef HAVE_SYS_TYPES_H +# include <sys/types.h> +#endif +#include <stdio.h> + #ifdef HAVE_LIBSASL2 extern "C" { #include <sasl/sasl.h> @@ -71,12 +76,8 @@ using std::auto_ptr; #include <ctype.h> #include <stdlib.h> #include <string.h> -#include <stdio.h> #include <assert.h> -#ifdef HAVE_SYS_TYPES_H -# include <sys/types.h> -#endif #ifdef HAVE_SYS_SOCKET_H # include <sys/socket.h> #endif |