aboutsummaryrefslogtreecommitdiff
path: root/lib/version.c
diff options
context:
space:
mode:
authormonnerat <pm@datasphere.ch>2010-04-19 11:17:46 +0200
committermonnerat <pm@datasphere.ch>2010-04-19 11:17:46 +0200
commit87fbcb4494dc942e38396e71a3c9c633d779a8f1 (patch)
tree94faaf04a76802292534bbab0713a8706703d081 /lib/version.c
parent4bfe07640c93f8dfd3af4bb76c8346ef4a129cc8 (diff)
parent5d93525f30e8b2a422644b4ec09a82ebf04283cd (diff)
Merge branch 'master' of github.com:bagder/curl
Diffstat (limited to 'lib/version.c')
-rw-r--r--lib/version.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/version.c b/lib/version.c
index aa86e3902..86cb113d7 100644
--- a/lib/version.c
+++ b/lib/version.c
@@ -107,9 +107,15 @@ char *curl_version(void)
ptr += len;
#endif
#ifdef USE_LIBSSH2
+ (void)snprintf(ptr, left, " libssh2/%s", CURL_LIBSSH2_VERSION);
+/*
+ If another lib version is added below libssh2, this code would instead
+ have to do:
+
len = snprintf(ptr, left, " libssh2/%s", CURL_LIBSSH2_VERSION);
left -= len;
ptr += len;
+*/
#endif
return version;