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

Diff for /src/usr.bin/cvs/entries.c between version 1.38 and 1.39

version 1.38, 2005/06/17 15:09:55 version 1.39, 2005/07/14 07:38:35
Line 289 
Line 289 
 struct cvs_ent*  struct cvs_ent*
 cvs_ent_get(CVSENTRIES *ef, const char *file)  cvs_ent_get(CVSENTRIES *ef, const char *file)
 {  {
         struct cvs_ent *ep;          struct cvs_ent *ent;
   
         TAILQ_FOREACH(ep, &(ef->cef_ent), ce_list)          TAILQ_FOREACH(ent, &(ef->cef_ent), ce_list)
                 if (strcmp(ep->ce_name, file) == 0)                  if (strcmp(ent->ce_name, file) == 0)
                         return (ep);                          return (ent);
   
         return (NULL);          return (NULL);
 }  }
Line 329 
Line 329 
 {  {
         int i;          int i;
         char *fields[CVS_ENTRIES_NFIELDS], *buf, *sp, *dp;          char *fields[CVS_ENTRIES_NFIELDS], *buf, *sp, *dp;
         struct cvs_ent *entp;          struct cvs_ent *ent;
   
         buf = strdup(entry);          buf = strdup(entry);
         if (buf == NULL) {          if (buf == NULL) {
Line 352 
Line 352 
                 return (NULL);                  return (NULL);
         }          }
   
         entp = (struct cvs_ent *)malloc(sizeof(*entp));          ent = (struct cvs_ent *)malloc(sizeof(*ent));
         if (entp == NULL) {          if (ent == NULL) {
                 cvs_log(LP_ERRNO, "failed to allocate CVS entry");                  cvs_log(LP_ERRNO, "failed to allocate CVS entry");
                 return (NULL);                  return (NULL);
         }          }
         memset(entp, 0, sizeof(*entp));          memset(ent, 0, sizeof(*ent));
         entp->ce_buf = buf;          ent->ce_buf = buf;
   
         if (*fields[0] == '\0')          if (*fields[0] == '\0')
                 entp->ce_type = CVS_ENT_FILE;                  ent->ce_type = CVS_ENT_FILE;
         else if (*fields[0] == 'D')          else if (*fields[0] == 'D')
                 entp->ce_type = CVS_ENT_DIR;                  ent->ce_type = CVS_ENT_DIR;
         else          else
                 entp->ce_type = CVS_ENT_NONE;                  ent->ce_type = CVS_ENT_NONE;
   
         entp->ce_status = CVS_ENT_REG;          ent->ce_status = CVS_ENT_REG;
         entp->ce_name = fields[1];          ent->ce_name = fields[1];
   
         if (entp->ce_type == CVS_ENT_FILE) {          if (ent->ce_type == CVS_ENT_FILE) {
                 if (*fields[2] == '-') {                  if (*fields[2] == '-') {
                         entp->ce_status = CVS_ENT_REMOVED;                          ent->ce_status = CVS_ENT_REMOVED;
                         sp = fields[2] + 1;                          sp = fields[2] + 1;
                 } else {                  } else {
                         sp = fields[2];                          sp = fields[2];
                         if ((fields[2][0] == '0') && (fields[2][1] == '\0'))                          if ((fields[2][0] == '0') && (fields[2][1] == '\0'))
                                 entp->ce_status = CVS_ENT_ADDED;                                  ent->ce_status = CVS_ENT_ADDED;
                 }                  }
   
                 if ((entp->ce_rev = rcsnum_parse(sp)) == NULL) {                  if ((ent->ce_rev = rcsnum_parse(sp)) == NULL) {
                         cvs_ent_free(entp);                          cvs_ent_free(ent);
                         return (NULL);                          return (NULL);
                 }                  }
   
                 if (cvs_cmdop == CVS_OP_SERVER) {                  if (cvs_cmdop == CVS_OP_SERVER) {
                         if (!strcmp(fields[3], "up to date"))                          if (!strcmp(fields[3], "up to date"))
                                 entp->ce_status = CVS_ENT_UPTODATE;                                  ent->ce_status = CVS_ENT_UPTODATE;
                 } else {                  } else {
                         if (strcmp(fields[3], CVS_DATE_DUMMY) == 0)                          if (strcmp(fields[3], CVS_DATE_DUMMY) == 0)
                                 entp->ce_mtime = CVS_DATE_DMSEC;                                  ent->ce_mtime = CVS_DATE_DMSEC;
                         else                          else
                                 entp->ce_mtime = cvs_date_parse(fields[3]);                                  ent->ce_mtime = cvs_date_parse(fields[3]);
                 }                  }
         }          }
   
         entp->ce_opts = fields[4];          ent->ce_opts = fields[4];
         entp->ce_tag = fields[5];          ent->ce_tag = fields[5];
         return (entp);          return (ent);
 }  }
   
 /*  /*

Legend:
Removed from v.1.38  
changed lines
  Added in v.1.39