]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - include/irc_string.h
Remove FLAGS2_NOLIMIT (IsExemptLimits/SetExemptLimits).
[irc/rqf/shadowircd.git] / include / irc_string.h
index bfb69424c3f1a060ac476279209d260357c7092a..3dd83530b4c1d2b7fd269f4dfeb86dcaec0f27c5 100644 (file)
@@ -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);