From 4bc31df3e4cc5d3ae25e5f65f49d6b71d69a97c3 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 6 Oct 2014 08:49:43 +0200 Subject: ssh_statemach_act: split out assignment from check just a minor code style thing to make the code clearer --- lib/ssh.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/ssh.c') diff --git a/lib/ssh.c b/lib/ssh.c index f468e4c84..6a71a875d 100644 --- a/lib/ssh.c +++ b/lib/ssh.c @@ -1793,7 +1793,8 @@ static CURLcode ssh_statemach_act(struct connectdata *conn, bool *block) break; case SSH_SFTP_CREATE_DIRS: - if((sshc->slash_pos = strchr(sshc->slash_pos, '/')) != NULL) { + sshc->slash_pos = strchr(sshc->slash_pos, '/'); + if(sshc->slash_pos) { *sshc->slash_pos = 0; infof(data, "Creating directory '%s'\n", sftp_scp->path); -- cgit v1.2.3