[BACK]Return to arch.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/arch.c between version 1.21 and 1.22

version 1.21, 1999/12/18 21:56:07 version 1.22, 1999/12/18 21:58:07
Line 344 
Line 344 
                     return(FAILURE);                      return(FAILURE);
                 } else {                  } else {
                     gn->type |= OP_ARCHV;                      gn->type |= OP_ARCHV;
                     (void)Lst_AtEnd(nodeLst, (ClientData)gn);                      Lst_AtEnd(nodeLst, (ClientData)gn);
                 }                  }
             } else if (Arch_ParseArchive(&sacrifice, nodeLst, ctxt)!=SUCCESS) {              } else if (Arch_ParseArchive(&sacrifice, nodeLst, ctxt)!=SUCCESS) {
                 /*                  /*
Line 379 
Line 379 
                      * end of the provided list.                       * end of the provided list.
                      */                       */
                     gn->type |= OP_ARCHV;                      gn->type |= OP_ARCHV;
                     (void) Lst_AtEnd (nodeLst, (ClientData)gn);                      Lst_AtEnd(nodeLst, (ClientData)gn);
                 }                  }
             }              }
             Lst_Destroy(members, NOFREE);              Lst_Destroy(members, NOFREE);
Line 397 
Line 397 
                  * provided list.                   * provided list.
                  */                   */
                 gn->type |= OP_ARCHV;                  gn->type |= OP_ARCHV;
                 (void) Lst_AtEnd (nodeLst, (ClientData)gn);                  Lst_AtEnd(nodeLst, (ClientData)gn);
             }              }
         }          }
         if (doSubst) {          if (doSubst) {
Line 644 
Line 644 
   
     fclose (arch);      fclose (arch);
   
     (void) Lst_AtEnd (archives, (ClientData) ar);      Lst_AtEnd(archives, (ClientData)ar);
   
     /*      /*
      * Now that the archive has been read and cached, we can look into       * Now that the archive has been read and cached, we can look into

Legend:
Removed from v.1.21  
changed lines
  Added in v.1.22