From 7d32ec5d28ecdf72f69d14794fd2fc98003b3fdd Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Wed, 28 Apr 2010 19:36:39 +0200 Subject: Fix warnings found with clang analyzer --- libssh/dh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libssh/dh.c') diff --git a/libssh/dh.c b/libssh/dh.c index 86de9a2d..9b9e129f 100644 --- a/libssh/dh.c +++ b/libssh/dh.c @@ -882,7 +882,7 @@ static int match(const char *group, const char *object){ const char *a; const char *z; - a = z = group; + z = group; do { a = strchr(z, ','); if (a == NULL) { -- cgit