Differences From Artifact [9c73ecf9a0]:
- File src/cgi.c — part of check-in [7d79460479] at 2015-01-21 21:19:00 on branch ad-unit-enhancement — Do not attempt to use the Right-Column Ad-Unit if the content contains a <table> element. (user: drh size: 57288) [more...]
To Artifact [76a4af25a1]:
- File src/cgi.c — part of check-in [af3d3b6936] at 2015-01-25 21:21:26 on branch trunk — Improved tracing capability for debugging purposes. (user: drh size: 57271) [more...]
| ︙ | |||
1754 1755 1756 1757 1758 1759 1760 | 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 | - + |
int nErr = 0, fd;
close(0);
fd = dup(connection);
if( fd!=0 ) nErr++;
close(1);
fd = dup(connection);
if( fd!=1 ) nErr++;
|
| ︙ |