Diff for /libwww/Library/src/HTReqMan.c between versions 2.71 and 2.72

version 2.71, 1998/10/23 18:26:42 version 2.72, 1998/11/19 17:14:39
Line 487  PUBLIC BOOL HTRequest_negotiation (HTReq Line 487  PUBLIC BOOL HTRequest_negotiation (HTReq
 **  if-* header fields that can be used to avoid version conflicts  **  if-* header fields that can be used to avoid version conflicts
 **  etc.  **  etc.
 */  */
 PUBLIC void HTRequest_setPreconditions (HTRequest * me, BOOL mode)  PUBLIC void HTRequest_setPreconditions (HTRequest * me, HTPreconditions mode)
 {  {
     if (me) me->preconditions = mode;      if (me) me->preconditions = mode;
 }  }
   
 PUBLIC BOOL HTRequest_preconditions (HTRequest * me)  PUBLIC HTPreconditions HTRequest_preconditions (HTRequest * me)
 {  {
     return me ? me->preconditions : NO;      return me ? me->preconditions : NO;
 }  }

Removed from v.2.71  
changed lines
  Added in v.2.72


Webmaster