[svn] Change EmptyString so gcc 4.2 doesn't complain.
from ratbox (androsyn), slightly changed
This commit is contained in:
parent
f7eac53df5
commit
d62ae16cb0
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
jilles 2007/07/14 21:50:21 UTC (20070714-3536)
|
||||
Log:
|
||||
In a two-argument whois, RPL_ENDOFWHOIS should show second arg.
|
||||
This already works correctly for successful/notfound case.
|
||||
|
||||
|
||||
Changes: Modified:
|
||||
+1 -1 trunk/modules/m_whois.c (File Modified)
|
||||
|
||||
|
||||
jilles 2007/07/14 13:34:50 UTC (20070714-3534)
|
||||
Log:
|
||||
Use mask_match() to check bans from local clients for
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
||||
* USA
|
||||
*
|
||||
* $Id: irc_string.h 3532 2007-07-14 13:32:18Z jilles $
|
||||
* $Id: irc_string.h 3538 2007-07-26 14:21:57Z jilles $
|
||||
*/
|
||||
|
||||
#ifndef INCLUDED_irc_string_h
|
||||
|
@ -131,7 +131,7 @@ char *strip_tabs(char *dest, const unsigned char *src, size_t len);
|
|||
|
||||
const char *myctime(time_t);
|
||||
|
||||
#define EmptyString(x) (!(x) || (*(x) == '\0'))
|
||||
#define EmptyString(x) ((x) == NULL || *(x) == '\0')
|
||||
#define CheckEmpty(x) EmptyString(x) ? "" : x
|
||||
|
||||
char *strtoken(char **save, char *str, const char *fs);
|
||||
|
|
|
@ -1 +1 @@
|
|||
#define SERNO "20070714-3534"
|
||||
#define SERNO "20070714-3536"
|
||||
|
|
Loading…
Reference in New Issue