fixed some bugs
[lcr.git] / join.cpp
index 2a1e0a7..c41ae4b 100644 (file)
--- a/join.cpp
+++ b/join.cpp
@@ -9,19 +9,10 @@
 **                                                                           **
 \*****************************************************************************/ 
 
-#include <stdio.h>
-//#include <string.h>
-//#include <stdlib.h>
-//#include <unistd.h>
-//#include <poll.h>
-//#include <sys/types.h>
-//#include <sys/stat.h>
-//#include <fcntl.h>
 #include "main.h"
 //#define __u8 unsigned char
 //#define __u16 unsigned short
 //#define __u32 unsigned long
-//#include "linux/isdnif.h"
 
 unsigned long join_serial = 1; /* must be 1, because 0== no join */
 
@@ -38,8 +29,8 @@ class Join *find_join_id(unsigned long join_id)
 
        while(join)
        {
-//printf("comparing: '%s' with '%s'\n", name, join->c_name);
-               if (join->c_serial == join_id)
+//printf("comparing: '%s' with '%s'\n", name, join->j_name);
+               if (join->j_serial == join_id)
                        return(join);
                join = join->next;
        }
@@ -55,8 +46,8 @@ Join::Join(void)
 {
        class Join **joinp;
 
-       c_serial = join_serial++;
-       c_type = JOIN_TYPE_NONE;
+       j_serial = join_serial++;
+       j_type = JOIN_TYPE_NONE;
 
        /* attach to chain */
        next = NULL;