	cc -O -I.  -DDEBUG -c dirsend.c
      107 |     fd_set              readfds;        /* Used for select          
            ....a...................b...........................................
a - 1506-045: (S) Undeclared variable.
b - 1506-046: (S) Syntax error.
                 */
      108 |     int                 tmp;
            ....a.......................
a - 1506-046: (S) Syntax error.
      109 |     char                *ctlptr;        /* Pointer to control field 
            ....a...............................................................
a - 1506-046: (S) Syntax error.
                 */
      110 |     short               stmp;           /* Temp short for 
            ....a.....................................................
a - 1506-046: (S) Syntax error.
            conversions    */
      111 |     int                 backoff;        /* Server requested backoff 
            ....a...............................................................
a - 1506-046: (S) Syntax error.
                 */
      112 |     unsigned char       rdflag11;       /* First byte of flags (bit 
            ....a...............................................................
a - 1506-046: (S) Syntax error.
            vect)*/
      113 |     unsigned char       rdflag12;       /* Second byte of flags 
            ....a...........................................................
a - 1506-046: (S) Syntax error.
            (int)    */
      114 |     int                 scpflag = 0;    /* Set if any sequencd cont 
            ....a...............................................................
a - 1506-046: (S) Syntax error.
            pkts */
      116 |     int                 ackpend = 0;    /* Acknowledgement pending  
            ....a...............................................................
a - 1506-046: (S) Syntax error.
                */
      117 |     int                 gaps = 0;       /* Gaps present in recvd 
            ....a............................................................
a - 1506-046: (S) Syntax error.
            pkts   */
      118 |     struct timeval      timeout;        /* Time to wait for 
            ....a.......................................................
a - 1506-046: (S) Syntax error.
            response    */
      119 |     struct timeval      ackwait;        /* Time to wait before 
            ....a..........................................................
a - 1506-046: (S) Syntax error.
            acking   */
      120 |     struct timeval      gapwait;        /* Time to wait b4 filling 
            ....a..............................................................
a - 1506-046: (S) Syntax error.
            gaps */
      121 |     struct timeval      *selwait;       /* Time to wait for select  
            ....a...............................................................
a - 1506-046: (S) Syntax error.
                */
      122 |     int                 retries = client_dirsrv_retry;
            ....a.................................................
a - 1506-046: (S) Syntax error.
      132 |     timeout.tv_sec = client_dirsrv_timeout;
            ....a......................................
a - 1506-045: (S) Undeclared variable.
      133 |     timeout.tv_usec = 0;
            ....a...................
a - 1506-045: (S) Undeclared variable.
      135 |     ackwait.tv_sec = 0;
            ....a..................
a - 1506-045: (S) Undeclared variable.
      136 |     ackwait.tv_usec = 500000;
            ....a........................
a - 1506-045: (S) Undeclared variable.
      138 |     gapwait.tv_sec = (client_dirsrv_timeout < 5 ? 
            ....a.............................................
a - 1506-045: (S) Undeclared variable.
            client_dirsrv_timeout : 5);
      139 |     gapwait.tv_usec = 0;
            ....a...................
a - 1506-045: (S) Undeclared variable.
      157 |         tmp = pfs_enable; pfs_enable = 0;
            ........a................................
a - 1506-045: (S) Undeclared variable.
      208 |         tmp = pfs_enable; pfs_enable = 0;
            ........a................................
a - 1506-045: (S) Undeclared variable.
      262 |         for(tmp = 901; tmp < 901+20; 
            ............a........................
a - 1506-045: (S) Undeclared variable.
      271 |                 }
    1506-056: (S) Break statement cannot be placed outside a while, do, for, or switch  statement.
      274 |         }
    1506-056: (S) Break statement cannot be placed outside a while, do, for, or switch  statement.
      329 |     gaps = ackpend = 0;
            ....a......b...........
a - 1506-045: (S) Undeclared variable.
b - 1506-045: (S) Undeclared variable.
      359 |     bzero((char *)(&readfds), sizeof(*(&readfds)));
            ....................a..............................
a - 1506-045: (S) Undeclared variable.
      362 |     if(ackpend) selwait = &ackwait;
            ................a..........b.......
a - 1506-045: (S) Undeclared variable.
b - 1506-045: (S) Undeclared variable.
      363 |     else if(gaps) selwait = &gapwait;
            .............................a.......
a - 1506-045: (S) Undeclared variable.
      364 |     else selwait = &timeout;
            ....................a.......
a - 1506-045: (S) Undeclared variable.
      368 |     tmp = select(lp + 1, &readfds, (fd_set *)0, (fd_set *)0, 
            ....a.......................................bc............d..
a - 1506-045: (S) Undeclared variable.
b - 1506-046: (S) Syntax error.
c - 1506-046: (S) Syntax error.
d - 1506-046: (S) Syntax error.
            selwait);
            .......a.
a - 1506-046: (S) Syntax error.
      383 |     if((tmp == 0) && (retries-- > 0)) {
            ......................a................
a - 1506-045: (S) Undeclared variable.
      464 |         ctlptr = next->start + 1;
            ........a........................
a - 1506-045: (S) Undeclared variable.
      467 |             bcopy(ctlptr,&stmp,2);
            ..........................a.......
a - 1506-045: (S) Undeclared variable.
      472 |             bcopy(ctlptr,&stmp,2);
            ..........................a.......
a - 1506-045: (S) Undeclared variable.
      481 |             bcopy(ctlptr,&stmp,2);  /* 0 means don't know      */
            ..........................a......................................
a - 1506-045: (S) Undeclared variable.
      486 |             bcopy(ctlptr,&stmp,2);  /* 1 means received request */
            ..........................a.......................................
a - 1506-045: (S) Undeclared variable.
      501 |             bcopy(ctlptr,&stmp,2);
            ..........................a.......
a - 1506-045: (S) Undeclared variable.
      503 |                 backoff = (stmp);
            ................a................
a - 1506-045: (S) Undeclared variable.
      513 |             bcopy(ctlptr,&rdflag11,1);
            ..........................a...........
a - 1506-045: (S) Undeclared variable.
      527 |                 scpflag++;
            ................a.........
a - 1506-045: (S) Undeclared variable.
      533 |             bcopy(ctlptr,&rdflag12,1);
            ..........................a...........
a - 1506-045: (S) Undeclared variable.
      546 |     ctlptr = next->start + ((0) > (next->length-20) ? (0) : 
            ....a.......................................................
a - 1506-045: (S) Undeclared variable.
            (next->length-20));
      554 |         bcopy(ctlptr,&stmp,2);
            ......................a.......
a - 1506-045: (S) Undeclared variable.
      577 |             backoff = (stmp);
            ............a................
a - 1506-045: (S) Undeclared variable.
      710 |     if(scpflag) {
            .......a.........
a - 1506-045: (S) Undeclared variable.
1254-004  The error code from the last failed command is 1.

Make Quitting.
