diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2006-08-30 07:57:26 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2006-08-30 07:57:26 +0000 |
| commit | 67ed391489956f4497aa8a3be90dd0cb4adb8e9b (patch) | |
| tree | bb98774c0b753f1f5a3dcc8e87718d70ae7a47ee /src | |
| parent | Start shell. Begin to make prototypes and wrappers. (diff) | |
| download | inkscape-67ed391489956f4497aa8a3be90dd0cb4adb8e9b.tar.gz inkscape-67ed391489956f4497aa8a3be90dd0cb4adb8e9b.zip | |
Fixed my mistake with #ifndef/#else/#endif HAVE_SSL
(bzr r1658)
Diffstat (limited to 'src')
| -rw-r--r-- | src/pedro/pedroutil.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pedro/pedroutil.cpp b/src/pedro/pedroutil.cpp index 6d988c719..6de3bbfd4 100644 --- a/src/pedro/pedroutil.cpp +++ b/src/pedro/pedroutil.cpp @@ -1085,7 +1085,7 @@ bool TcpSocket::startTls() fprintf(stderr, "SSL starttls() error: client not compiled with SSL enabled\n"); return false; -#endif /*HAVE_SSL*/ +#else /*HAVE_SSL*/ sslStream = NULL; sslContext = NULL; @@ -1149,6 +1149,7 @@ bool TcpSocket::startTls() sslEnabled = true; return true; +#endif /* HAVE_SSL */ } |
