mirror of
https://github.com/matrix-construct/construct
synced 2025-02-20 02:30:07 +01:00
ircd/librb: epoch needs a john hancock
This commit is contained in:
parent
ba7cb82ab3
commit
97a4adae40
3 changed files with 3 additions and 3 deletions
|
@ -61,7 +61,7 @@ extern const char *creation;
|
|||
extern const char *generation;
|
||||
extern const char *infotext[];
|
||||
extern const char *serno;
|
||||
extern const unsigned long int datecode;
|
||||
extern const time_t datecode;
|
||||
extern const char *ircd_version;
|
||||
extern const char *logFileName;
|
||||
extern const char *pidFileName;
|
||||
|
|
|
@ -109,7 +109,7 @@ struct mapi_mheader_av2
|
|||
mapi_cap_list_av2 *mapi_cap_list; /* List of CAPs to add */
|
||||
const char *mapi_module_version; /* Module's version (freeform), replaced with ircd version if NULL */
|
||||
const char *mapi_module_description; /* Module's description (freeform) */
|
||||
unsigned long int mapi_datecode; /* Unix timestamp of module's build */
|
||||
time_t mapi_datecode; /* Unix timestamp of module's build */
|
||||
};
|
||||
|
||||
#define DECLARE_MODULE_AV1(name, reg, unreg, cl, hl, hfnlist, v) \
|
||||
|
|
|
@ -57,7 +57,7 @@ const char *generation = "$generation";
|
|||
const char *creation = "$creation";
|
||||
const char *ircd_version = PATCHLEVEL;
|
||||
const char *serno = SERNO;
|
||||
const unsigned long int datecode = DATECODE;
|
||||
const time_t datecode = DATECODE;
|
||||
|
||||
const char *infotext[] =
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue