From d17bf287afe408db25252eacfde8b4b8caed7a29 Mon Sep 17 00:00:00 2001
From: Per Cederqvist <ceder@lysator.liu.se>
Date: Sat, 6 Jul 1991 08:19:20 +0000
Subject: [PATCH] Replaced " \t" with WHITESPACE.

---
 src/server/conference.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/server/conference.c b/src/server/conference.c
index 154c18221..e517e2d73 100644
--- a/src/server/conference.c
+++ b/src/server/conference.c
@@ -20,7 +20,7 @@
 #include "connections.h"
 #include "send-async.h"
 #include <debug.h>
-#include "parser.h"
+#include <parser.h>
 #include "internal-connections.h"
 
 /* From ram-cache.h. This will go away when we use regexp-matching. This is
@@ -134,7 +134,8 @@ unique_name( const String name, Conf_no conf_no )
     int n;
         
     parse_info = parse(name, match_table, FALSE, TRUE,
-		       s_fcrea_str(" \t"), DEFAULT_COLLAT_TAB);
+		       s_fcrea_str(WHITESPACE),
+		       DEFAULT_COLLAT_TAB);
 
     if ( parse_info.no_of_matches == 0 ) /* Doesn't match any name. */
     {
@@ -158,7 +159,7 @@ unique_name( const String name, Conf_no conf_no )
     
     /* The name matches some conference. Check if they are equal. */
 
-    name_token = tokenize(name, s_fcrea_str(" \t"));
+    name_token = tokenize(name, s_fcrea_str(WHITESPACE));
 
     exact_match_found = FALSE;
     
-- 
GitLab