By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2110
Collapse All | Expand All

(-)tdeioslave/smtp/smtp.cc.orig (-4 / +5 lines)
Lines 30-35 Link Here
30
30
31
#include <config.h>
31
#include <config.h>
32
32
33
#ifdef HAVE_SYS_TYPES_H
34
# include <sys/types.h>
35
#endif
36
#include <stdio.h>
37
33
#ifdef HAVE_LIBSASL2
38
#ifdef HAVE_LIBSASL2
34
extern "C" {
39
extern "C" {
35
#include <sasl/sasl.h>
40
#include <sasl/sasl.h>
Lines 71-82 Link Here
71
#include <ctype.h>
76
#include <ctype.h>
72
#include <stdlib.h>
77
#include <stdlib.h>
73
#include <string.h>
78
#include <string.h>
74
#include <stdio.h>
75
#include <assert.h>
79
#include <assert.h>
76
80
77
#ifdef HAVE_SYS_TYPES_H
78
# include <sys/types.h>
79
#endif
80
#ifdef HAVE_SYS_SOCKET_H
81
#ifdef HAVE_SYS_SOCKET_H
81
# include <sys/socket.h>
82
# include <sys/socket.h>
82
#endif
83
#endif

Return to bug 2110