# | Line 46 | Line 46 | |
---|---|---|
46 | // | |
47 | // Douglas Thrift | |
48 | // | |
49 | < | // $Id: Page.cpp,v 1.5 2003/12/27 03:31:33 douglas Exp $ |
49 | > | // $Id: Page.cpp,v 1.6 2003/12/27 05:05:54 douglas Exp $ |
50 | ||
51 | #include "Page.h" | |
52 | ||
# | Line 259 | Line 259 | ostream& operator<<(ostream& os, Page& d | |
259 | #ifndef _OpenSSL_ | |
260 | if (data.getPort() != 80) | |
261 | #else | |
262 | < | if ((data.getPort() != 80 && !data.getTls()) || data.getPort() != 443) |
262 | > | if ((data.getPort() != 80 && !data.getTls()) || (data.getPort() != 443 && |
263 | > | data.getTls())) |
264 | #endif | |
265 | { | |
266 | os << " <port>" << data.getPort() << "</port>\n"; |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |