config.h | config.h | |||
---|---|---|---|---|
skipping to change at line 41 | skipping to change at line 41 | |||
/* Define if we have enabled pthread support */ | /* Define if we have enabled pthread support */ | |||
/* #undef HAVE_PTHREAD */ | /* #undef HAVE_PTHREAD */ | |||
/* If there is no socklen_t, define this for the netdb shim */ | /* If there is no socklen_t, define this for the netdb shim */ | |||
/* #undef NEED_SOCKLEN_T_DEFINE */ | /* #undef NEED_SOCKLEN_T_DEFINE */ | |||
/* Define the arch name string */ | /* Define the arch name string */ | |||
#define COMMON_ARCH "i386" | #define COMMON_ARCH "i386" | |||
/* The version number string */ | /* The version number string */ | |||
#define VERSION "0.8.11.3" | #define VERSION "0.8.11.4" | |||
/* The package name string */ | /* The package name string */ | |||
#define PACKAGE "apt" | #define PACKAGE "apt" | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
error.h | error.h | |||
---|---|---|---|---|
skipping to change at line 310 | skipping to change at line 310 | |||
std::list<Item> const Messages; | std::list<Item> const Messages; | |||
bool const PendingFlag; | bool const PendingFlag; | |||
MsgStack(std::list<Item> const &Messages, bool const &Pendin g) : | MsgStack(std::list<Item> const &Messages, bool const &Pendin g) : | |||
Messages(Messages), PendingFlag(Pending) {}; | Messages(Messages), PendingFlag(Pending) {}; | |||
}; | }; | |||
std::list<MsgStack> Stacks; | std::list<MsgStack> Stacks; | |||
bool InsertErrno(MsgType type, const char* Function, | bool InsertErrno(MsgType type, const char* Function, | |||
const char* Description, va_list &args); | const char* Description, va_list &args, | |||
int const errsv, size_t &msgSize); | ||||
bool Insert(MsgType type, const char* Description, | bool Insert(MsgType type, const char* Description, | |||
va_list &args); | va_list &args, size_t &msgSize); | |||
/*}} }*/ | /*}} }*/ | |||
}; | }; | |||
/*}} }*/ | /*}} }*/ | |||
// The 'extra-ansi' syntax is used to help with collisions. | // The 'extra-ansi' syntax is used to help with collisions. | |||
GlobalError *_GetErrorObj(); | GlobalError *_GetErrorObj(); | |||
#define _error _GetErrorObj() | #define _error _GetErrorObj() | |||
#endif | #endif | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 3 lines changed or added | |||