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

Diff for /mandoc/mandocdb.c between version 1.19 and 1.20

version 1.19, 2011/12/01 23:46:26 version 1.20, 2011/12/01 23:55:58
Line 33 
Line 33 
 #include <string.h>  #include <string.h>
 #include <unistd.h>  #include <unistd.h>
   
 #include <arpa/inet.h>  
   
 #ifdef __linux__  #ifdef __linux__
 # include <db_185.h>  # include <db_185.h>
 #else  #else
Line 628  index_merge(const struct of *of, struct mparse *mp,
Line 626  index_merge(const struct of *of, struct mparse *mp,
                  * into the database.                   * into the database.
                  */                   */
   
                 vbuf.rec = htonl(rec);                  vbuf.rec = htobe32(rec);
                 seq = R_FIRST;                  seq = R_FIRST;
                 while (0 == (ch = (*hash->seq)(hash, &key, &val, seq))) {                  while (0 == (ch = (*hash->seq)(hash, &key, &val, seq))) {
                         seq = R_NEXT;                          seq = R_NEXT;
                         vbuf.mask = *(uint64_t *)val.data;                          vbuf.mask = htobe64(*(uint64_t *)val.data);
                         val.size = sizeof(struct db_val);                          val.size = sizeof(struct db_val);
                         val.data = &vbuf;                          val.data = &vbuf;
                         dbt_put(db, dbf, &key, &val);                          dbt_put(db, dbf, &key, &val);
Line 732  index_prune(const struct of *ofile, DB *db, const char
Line 730  index_prune(const struct of *ofile, DB *db, const char
                                 break;                                  break;
   
                         vbuf = val.data;                          vbuf = val.data;
                         if (*maxrec != ntohl(vbuf->rec))                          if (*maxrec != betoh32(vbuf->rec))
                                 continue;                                  continue;
   
                         if ((ch = (*db->del)(db, &key, R_CURSOR)) < 0)                          if ((ch = (*db->del)(db, &key, R_CURSOR)) < 0)

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20

CVSweb