aboutsummaryrefslogtreecommitdiff
path: root/libssh
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2009-05-05 07:20:12 +0000
committerAndreas Schneider <mail@cynapses.org>2009-05-05 07:20:12 +0000
commit8c45767d34af2635507f50f1985e9cce9aed3a06 (patch)
tree8463585e3d715bccff456a1f37a2c569be51050a /libssh
parent1d78b6d00eac5a8a8d5f58f78189a3ce9639d926 (diff)
downloadlibssh-8c45767d34af2635507f50f1985e9cce9aed3a06.tar.gz
libssh-8c45767d34af2635507f50f1985e9cce9aed3a06.tar.xz
libssh-8c45767d34af2635507f50f1985e9cce9aed3a06.zip
Fix build error.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@718 7dcaeef0-15fb-0310-b436-a5af3365683c
Diffstat (limited to 'libssh')
-rw-r--r--libssh/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libssh/log.c b/libssh/log.c
index 0ceff94..369871b 100644
--- a/libssh/log.c
+++ b/libssh/log.c
@@ -69,7 +69,7 @@ void ssh_log(SSH_SESSION *session, int verbosity, const char *format, ...) {
memset(indent, ' ', min);
indent[min] = '\0';
- fprintf(stderr, "[func] %s%s\n", buf2, buffer);
+ fprintf(stderr, "[func] %s%s\n", indent, buffer);
} else {
fprintf(stderr, "[%d] %s\n", verbosity, buffer);
}