Diff for /libwww/Library/src/HTTP.c between versions 1.44 and 1.45

version 1.44, 1994/03/08 09:31:37 version 1.45, 1994/03/13 17:33:44
Line 310  PUBLIC int HTLoadHTTP ARGS1 (HTRequest * Line 310  PUBLIC int HTLoadHTTP ARGS1 (HTRequest *
                     HTAppVersion ? HTAppVersion : "0.0",                      HTAppVersion ? HTAppVersion : "0.0",
                     HTLibraryVersion, CR, LF);                      HTLibraryVersion, CR, LF);
             StrAllocCat(command, line);              StrAllocCat(command, line);
   
   #ifdef ACCESS_AUTH
               if (request->authorization != NULL) {
                   sprintf(line, "Authorization: %s%c%c",
                           request->authorization, CR, LF);
                   StrAllocCat(command, line);
               }
   #endif /* ACCESS_AUTH */
   
         }          }
   
         StrAllocCat(command, crlf);     /* Blank line means "end" */          StrAllocCat(command, crlf);     /* Blank line means "end" */

Removed from v.1.44  
changed lines
  Added in v.1.45


Webmaster