Diff for /libwww/Library/src/HTProxy.c between versions 2.1 and 2.2

version 2.1, 1995/06/07 20:17:56 version 2.2, 1995/06/10 16:53:18
Line 320  PUBLIC char * HTProxy_getProxy ARGS1(CON Line 320  PUBLIC char * HTProxy_getProxy ARGS1(CON
         while ((pres = (HTProxy *) HTList_nextObject(cur)) != NULL) {          while ((pres = (HTProxy *) HTList_nextObject(cur)) != NULL) {
             if (!strcmp(pres->access, access)) {              if (!strcmp(pres->access, access)) {
                 StrAllocCopy(proxy, pres->url);                  StrAllocCopy(proxy, pres->url);
                 fprintf(TDEST, "GetProxy.... Proxy found: `%s\'\n", pres->url);                  if (PROT_TRACE)
                       fprintf(TDEST, "GetProxy.... Found: `%s\'\n", pres->url);
                 break;                  break;
             }              }
         }          }
Line 357  PUBLIC char * HTProxy_getGateway ARGS1(C Line 358  PUBLIC char * HTProxy_getGateway ARGS1(C
         while ((pres = (HTProxy *) HTList_nextObject(cur)) != NULL) {          while ((pres = (HTProxy *) HTList_nextObject(cur)) != NULL) {
             if (!strcmp(pres->access, access)) {              if (!strcmp(pres->access, access)) {
                 StrAllocCopy(gateway, pres->url);                  StrAllocCopy(gateway, pres->url);
                 fprintf(TDEST, "GetGateway.. Found: `%s\'\n", pres->url);                  if (PROT_TRACE)
                       fprintf(TDEST, "GetGateway.. Found: `%s\'\n", pres->url);
                 break;                  break;
             }              }
         }          }

Removed from v.2.1  
changed lines
  Added in v.2.2


Webmaster