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

Diff for /src/usr.bin/sort/Attic/fields.c between version 1.11 and 1.12

version 1.11, 2006/02/14 14:45:36 version 1.12, 2007/08/21 20:29:25
Line 118 
Line 118 
                     fieldtable->flags)) == NULL)                      fieldtable->flags)) == NULL)
                         return (1);                          return (1);
   
         if (UNIQUE)          if (UNIQUE || STABLE)
                 *(keypos-1) = REC_D;                  *(keypos-1) = REC_D;
         keybuf->offset = keypos - keybuf->data;          keybuf->offset = keypos - keybuf->data;
         keybuf->length = keybuf->offset + line->size;          keybuf->length = keybuf->offset + line->size;
Line 196 
Line 196 
  * To avoid confusing the exponent and the mantissa, use a field delimiter   * To avoid confusing the exponent and the mantissa, use a field delimiter
  * if the exponent is exactly 61, 61+252, etc--this is ok, since it's the   * if the exponent is exactly 61, 61+252, etc--this is ok, since it's the
  * only time a field delimiter can come in that position.   * only time a field delimiter can come in that position.
  * Reverse order is done analagously.   * Reverse order is done analogously.
  */   */
   
 u_char *  u_char *

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12