Fossil

Check-in [5fc80efdf9]
Login

Check-in [5fc80efdf9]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:fix compile error
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | ssl
Files: files | file ages | folders
SHA1: 5fc80efdf934d14554c3449a34cb7f44929fb84a
User & Date: ron 2010-01-21 20:18:00.000
Context
2010-01-21
22:03
Update the SSL branch to include all the latest changes. ... (check-in: 652f20ef9c user: drh tags: ssl)
20:18
fix compile error ... (check-in: 5fc80efdf9 user: ron tags: ssl)
2010-01-20
16:23
Add the --cherrypick option to the "merge" command. ... (check-in: 3005080796 user: drh tags: ssl)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/http_transport.c.
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
    }
    i++;
  }
  /* printf("Got line: [%s]\n", &transport.pBuf[iStart]); */
  return &transport.pBuf[iStart];
}

void *transport_global_shutdown(void){
  if( g.urlIsHttps ){
    #ifdef FOSSIL_ENABLE_SSL
    ssl_global_shutdown();
    #endif
  }else{
    socket_global_shutdown();
  }







|







316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
    }
    i++;
  }
  /* printf("Got line: [%s]\n", &transport.pBuf[iStart]); */
  return &transport.pBuf[iStart];
}

void transport_global_shutdown(void){
  if( g.urlIsHttps ){
    #ifdef FOSSIL_ENABLE_SSL
    ssl_global_shutdown();
    #endif
  }else{
    socket_global_shutdown();
  }