[BACK]Return to mandocdb.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/mandocdb.c between version 1.93 and 1.94

version 1.93, 2014/01/02 18:52:15 version 1.94, 2014/01/02 20:24:39
Line 522  treescan(void)
Line 522  treescan(void)
         FTSENT          *ff;          FTSENT          *ff;
         struct mlink    *mlink;          struct mlink    *mlink;
         int              dform;          int              dform;
         char            *fsec;          char            *dsec, *arch, *fsec, *cp;
         const char      *dsec, *arch, *cp, *path;          const char      *path;
         const char      *argv[2];          const char      *argv[2];
   
         argv[0] = ".";          argv[0] = ".";
Line 588  treescan(void)
Line 588  treescan(void)
                                 continue;                                  continue;
                         } else                          } else
                                 fsec[-1] = '\0';                                  fsec[-1] = '\0';
   
                         mlink = mandoc_calloc(1, sizeof(struct mlink));                          mlink = mandoc_calloc(1, sizeof(struct mlink));
                         strlcpy(mlink->file, path, sizeof(mlink->file));                          strlcpy(mlink->file, path, sizeof(mlink->file));
                         mlink->dform = dform;                          mlink->dform = dform;
                         if (NULL != dsec)                          mlink->dsec = dsec;
                                 mlink->dsec = mandoc_strdup(dsec);                          mlink->arch = arch;
                         if (NULL != arch)                          mlink->name = ff->fts_name;
                                 mlink->arch = mandoc_strdup(arch);                          mlink->fsec = fsec;
                         mlink->name = mandoc_strdup(ff->fts_name);  
                         if (NULL != fsec)  
                                 mlink->fsec = mandoc_strdup(fsec);  
                         mlink_add(mlink, ff->fts_statp);                          mlink_add(mlink, ff->fts_statp);
                         continue;                          continue;
                 } else if (FTS_D != ff->fts_info &&                  } else if (FTS_D != ff->fts_info &&
Line 617  treescan(void)
Line 615  treescan(void)
                          * Try to infer this from the name.                           * Try to infer this from the name.
                          * If we're not in use_all, enforce it.                           * If we're not in use_all, enforce it.
                          */                           */
                         dsec = NULL;  
                         dform = FORM_NONE;  
                         cp = ff->fts_name;                          cp = ff->fts_name;
                         if (FTS_DP == ff->fts_info)                          if (FTS_DP == ff->fts_info)
                                 break;                                  break;
Line 629  treescan(void)
Line 625  treescan(void)
                         } else if (0 == strncmp(cp, "cat", 3)) {                          } else if (0 == strncmp(cp, "cat", 3)) {
                                 dform = FORM_CAT;                                  dform = FORM_CAT;
                                 dsec = cp + 3;                                  dsec = cp + 3;
                           } else {
                                   dform = FORM_NONE;
                                   dsec = NULL;
                         }                          }
   
                         if (NULL != dsec || use_all)                          if (NULL != dsec || use_all)
Line 643  treescan(void)
Line 642  treescan(void)
                          * Possibly our architecture.                           * Possibly our architecture.
                          * If we're descending, keep tabs on it.                           * If we're descending, keep tabs on it.
                          */                           */
                         arch = NULL;  
                         if (FTS_DP != ff->fts_info && NULL != dsec)                          if (FTS_DP != ff->fts_info && NULL != dsec)
                                 arch = ff->fts_name;                                  arch = ff->fts_name;
                           else
                                   arch = NULL;
                         break;                          break;
                 default:                  default:
                         if (FTS_DP == ff->fts_info || use_all)                          if (FTS_DP == ff->fts_info || use_all)
Line 719  filescan(const char *file)
Line 719  filescan(const char *file)
                 *p++ = '\0';                  *p++ = '\0';
                 if (0 == strncmp(start, "man", 3)) {                  if (0 == strncmp(start, "man", 3)) {
                         mlink->dform = FORM_SRC;                          mlink->dform = FORM_SRC;
                         mlink->dsec = mandoc_strdup(start + 3);                          mlink->dsec = start + 3;
                 } else if (0 == strncmp(start, "cat", 3)) {                  } else if (0 == strncmp(start, "cat", 3)) {
                         mlink->dform = FORM_CAT;                          mlink->dform = FORM_CAT;
                         mlink->dsec = mandoc_strdup(start + 3);                          mlink->dsec = start + 3;
                 }                  }
   
                 start = p;                  start = p;
                 if (NULL != mlink->dsec && NULL != (p = strchr(start, '/'))) {                  if (NULL != mlink->dsec && NULL != (p = strchr(start, '/'))) {
                         *p++ = '\0';                          *p++ = '\0';
                         mlink->arch = mandoc_strdup(start);                          mlink->arch = start;
                         start = p;                          start = p;
                 }                  }
         }          }
Line 743  filescan(const char *file)
Line 743  filescan(const char *file)
   
         if ('.' == *p) {          if ('.' == *p) {
                 *p++ = '\0';                  *p++ = '\0';
                 mlink->fsec = mandoc_strdup(p);                  mlink->fsec = p;
         }          }
   
         /*          /*
Line 755  filescan(const char *file)
Line 755  filescan(const char *file)
                 mlink->name = p + 1;                  mlink->name = p + 1;
                 *p = '\0';                  *p = '\0';
         }          }
         mlink->name = mandoc_strdup(mlink->name);  
   
         mlink_add(mlink, &st);          mlink_add(mlink, &st);
 }  }
   
Line 769  mlink_add(struct mlink *mlink, const struct stat *st)
Line 767  mlink_add(struct mlink *mlink, const struct stat *st)
   
         assert(NULL != mlink->file);          assert(NULL != mlink->file);
   
         if (NULL == mlink->dsec)          mlink->dsec = mandoc_strdup(mlink->dsec ? mlink->dsec : "");
                 mlink->dsec = mandoc_strdup("");          mlink->arch = mandoc_strdup(mlink->arch ? mlink->arch : "");
         if (NULL == mlink->arch)          mlink->name = mandoc_strdup(mlink->name ? mlink->name : "");
                 mlink->arch = mandoc_strdup("");          mlink->fsec = mandoc_strdup(mlink->fsec ? mlink->fsec : "");
         if (NULL == mlink->name)  
                 mlink->name = mandoc_strdup("");  
         if (NULL == mlink->fsec)  
                 mlink->fsec = mandoc_strdup("");  
   
         if ('0' == *mlink->fsec) {          if ('0' == *mlink->fsec) {
                 free(mlink->fsec);                  free(mlink->fsec);

Legend:
Removed from v.1.93  
changed lines
  Added in v.1.94

CVSweb