1176
1177
1178
1179
1180
1181
1182
|
return;
wellknown_notfound:
fossil_free(zPath);
webpage_notfound_error(0);
return;
}
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
|
return;
wellknown_notfound:
fossil_free(zPath);
webpage_notfound_error(0);
return;
}
/*
** Return the OpenSSL version number being used. Space to hold
** this name is obtained from fossil_malloc() and should be
** freed by the caller.
*/
char *fossil_openssl_version(void){
#if defined(FOSSIL_ENABLE_SSL)
return mprintf("%s (0x%09x)\n",
SSLeay_version(SSLEAY_VERSION), OPENSSL_VERSION_NUMBER);
#else
return mprintf("none");
#endif
}
|