From: ishmal Date: Wed, 30 Aug 2006 07:57:26 +0000 (+0000) Subject: Fixed my mistake with #ifndef/#else/#endif HAVE_SSL X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=3ebb94e96152043a2a786fcf7b42db69ab001d75;p=inkscape.git Fixed my mistake with #ifndef/#else/#endif HAVE_SSL --- 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 */ }