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

Diff for /src/usr.bin/cvs/Attic/proto.c between version 1.14 and 1.15

version 1.14, 2004/07/30 17:37:58 version 1.15, 2004/07/30 23:10:21
Line 176 
Line 176 
         { CVS_RESP_CREATED,    "Created",                cvs_resp_updated  },          { CVS_RESP_CREATED,    "Created",                cvs_resp_updated  },
         { CVS_RESP_UPDATED,    "Updated",                cvs_resp_updated  },          { CVS_RESP_UPDATED,    "Updated",                cvs_resp_updated  },
         { CVS_RESP_UPDEXIST,   "Update-existing",        cvs_resp_updated  },          { CVS_RESP_UPDEXIST,   "Update-existing",        cvs_resp_updated  },
           { CVS_RESP_MERGED,     "Merged",                 cvs_resp_updated  },
         { CVS_RESP_REMOVED,    "Removed",                cvs_resp_removed  },          { CVS_RESP_REMOVED,    "Removed",                cvs_resp_removed  },
         { CVS_RESP_MERGED,     "Merged",                 NULL              },  
         { CVS_RESP_CKSUM,      "Checksum",               cvs_resp_cksum    },          { CVS_RESP_CKSUM,      "Checksum",               cvs_resp_cksum    },
         { CVS_RESP_CLRSTATDIR, "Clear-static-directory", cvs_resp_statdir  },          { CVS_RESP_CLRSTATDIR, "Clear-static-directory", cvs_resp_statdir  },
         { CVS_RESP_SETSTATDIR, "Set-static-directory",   cvs_resp_statdir  },          { CVS_RESP_SETSTATDIR, "Set-static-directory",   cvs_resp_statdir  },
Line 819 
Line 819 
 static int  static int
 cvs_resp_newentry(struct cvsroot *root, int type, char *line)  cvs_resp_newentry(struct cvsroot *root, int type, char *line)
 {  {
         char entbuf[128], path[MAXPATHLEN];          char entbuf[128];
         CVSENTRIES *entfile;          CVSENTRIES *entfile;
   
         snprintf(path, sizeof(path), "%s/" CVS_PATH_ENTRIES, line);  
   
         /* get the remote path */          /* get the remote path */
         cvs_getln(root, entbuf, sizeof(entbuf));          cvs_getln(root, entbuf, sizeof(entbuf));
   
Line 831 
Line 829 
         if (cvs_getln(root, entbuf, sizeof(entbuf)) < 0)          if (cvs_getln(root, entbuf, sizeof(entbuf)) < 0)
                 return (-1);                  return (-1);
   
         entfile = cvs_ent_open(path, O_WRONLY);          entfile = cvs_ent_open(line, O_WRONLY);
         if (entfile == NULL)          if (entfile == NULL)
                 return (-1);                  return (-1);
         cvs_ent_addln(entfile, entbuf);          cvs_ent_addln(entfile, entbuf);
Line 953 
Line 951 
   
         ep = NULL;          ep = NULL;
   
         if (type == CVS_RESP_CREATED) {          len = strlen(tbuf);
                 /* read the remote path of the file */          if ((len > 0) && (tbuf[len - 1] == '\n'))
                 cvs_getln(root, path, sizeof(path));                  tbuf[--len] = '\0';
   
                 /* read the new entry */          /* read the remote path of the file */
                 cvs_getln(root, path, sizeof(path));          cvs_getln(root, path, sizeof(path));
                 ep = cvs_ent_parse(path);  
                 if (ep == NULL)  
                         return (-1);  
   
                 snprintf(path, sizeof(path), "%s%s", line, ep->ce_name);          /* read the new entry */
           cvs_getln(root, path, sizeof(path));
           ep = cvs_ent_parse(path);
           if (ep == NULL)
                   return (-1);
           snprintf(path, sizeof(path), "%s/%s", line, ep->ce_name);
   
   
           if (type == CVS_RESP_CREATED) {
                 /* set the timestamp as the last one received from Mod-time */                  /* set the timestamp as the last one received from Mod-time */
                 ep->ce_timestamp = ctime_r(&cvs_modtime, tbuf);                  ep->ce_timestamp = ctime_r(&cvs_modtime, tbuf);
                 len = strlen(tbuf);  
                 if ((len > 0) && (tbuf[len - 1] == '\n'))  
                         tbuf[--len] = '\0';  
   
                 ef = cvs_ent_open(line, O_WRONLY);                  ef = cvs_ent_open(line, O_WRONLY);
                 if (ef == NULL)                  if (ef == NULL)
Line 1070 
Line 1069 
         if (fname == NULL)          if (fname == NULL)
                 fname = buf;                  fname = buf;
         snprintf(file, sizeof(file), "%s%s", line, fname);          snprintf(file, sizeof(file), "%s%s", line, fname);
         printf("FILE TO PATCH: %s\n", file);  
   
         /* get updated entry fields */          /* get updated entry fields */
         cvs_getln(root, buf, sizeof(buf));          cvs_getln(root, buf, sizeof(buf));

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15