make VERSION not include sid (#118)
This commit is contained in:
parent
5a261597e4
commit
f8838806ef
2 changed files with 4 additions and 6 deletions
|
@ -115,9 +115,9 @@
|
|||
#define NUMERIC_STR_348 ":%s 348 %s %s %s %s %lu"
|
||||
#define NUMERIC_STR_349 ":%s 349 %s %s :End of Channel Exception List"
|
||||
#ifndef CUSTOM_BRANDING
|
||||
#define NUMERIC_STR_351 "%s(%s). %s :%s TS%dow %s"
|
||||
#define NUMERIC_STR_351 "%s(%s). %s :%s TS%dow"
|
||||
#else
|
||||
#define NUMERIC_STR_351 "%s(%s,%s). %s :%s TS%dow %s"
|
||||
#define NUMERIC_STR_351 "%s(%s,%s). %s :%s TS%dow"
|
||||
#endif
|
||||
#define NUMERIC_STR_352 ":%s 352 %s %s %s %s %s %s %s :%d %s"
|
||||
#define NUMERIC_STR_353 ":%s 353 %s %s %s :"
|
||||
|
|
|
@ -81,8 +81,7 @@ m_version(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *sourc
|
|||
#ifdef CUSTOM_BRANDING
|
||||
PACKAGE_NAME "-" PACKAGE_VERSION,
|
||||
#endif
|
||||
me.name, confopts(), TS_CURRENT,
|
||||
ServerInfo.sid);
|
||||
me.name, confopts(), TS_CURRENT);
|
||||
|
||||
show_isupport(source_p);
|
||||
}
|
||||
|
@ -101,8 +100,7 @@ mo_version(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *sour
|
|||
#ifdef CUSTOM_BRANDING
|
||||
PACKAGE_NAME "-" PACKAGE_VERSION,
|
||||
#endif
|
||||
me.name, confopts(), TS_CURRENT,
|
||||
ServerInfo.sid);
|
||||
me.name, confopts(), TS_CURRENT);
|
||||
show_isupport(source_p);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue