diff options
-rw-r--r-- | camel/ChangeLog | 6 | ||||
-rw-r--r-- | camel/providers/smtp/camel-smtp-transport.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index dcdc93d03e..3fac98601e 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,9 @@ +2000-04-08 Dan Winship <danw@helixcode.com> + + * providers/smtp/camel-smtp-transport.c: #include <sys/param.h> + for MAXHOSTNAMELEN. (This is a stopgap: some of the uses of + MAXHOSTNAMELEN are wrong anyway...) + 2000-04-07 Jeffrey Stedfast <fejj@stampede.org> * providers/smtp/camel-smtp-transport.c: fixes to numerous bugs; diff --git a/camel/providers/smtp/camel-smtp-transport.c b/camel/providers/smtp/camel-smtp-transport.c index 6887a8df1b..c56aa98b08 100644 --- a/camel/providers/smtp/camel-smtp-transport.c +++ b/camel/providers/smtp/camel-smtp-transport.c @@ -25,6 +25,7 @@ #include "config.h" +#include <sys/param.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> |