diff options
Diffstat (limited to 'sftp-client.c')
-rw-r--r-- | sftp-client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sftp-client.c b/sftp-client.c index d894a11f2..92df42751 100644 --- a/sftp-client.c +++ b/sftp-client.c | |||
@@ -20,7 +20,7 @@ | |||
20 | /* XXX: copy between two remote sites */ | 20 | /* XXX: copy between two remote sites */ |
21 | 21 | ||
22 | #include "includes.h" | 22 | #include "includes.h" |
23 | RCSID("$OpenBSD: sftp-client.c,v 1.52 2004/11/25 22:22:14 markus Exp $"); | 23 | RCSID("$OpenBSD: sftp-client.c,v 1.53 2005/03/10 22:01:05 deraadt Exp $"); |
24 | 24 | ||
25 | #include "openbsd-compat/sys-queue.h" | 25 | #include "openbsd-compat/sys-queue.h" |
26 | 26 | ||
@@ -856,7 +856,7 @@ do_download(struct sftp_conn *conn, char *remote_path, char *local_path, | |||
856 | debug3("Received reply T:%u I:%u R:%d", type, id, max_req); | 856 | debug3("Received reply T:%u I:%u R:%d", type, id, max_req); |
857 | 857 | ||
858 | /* Find the request in our queue */ | 858 | /* Find the request in our queue */ |
859 | for(req = TAILQ_FIRST(&requests); | 859 | for (req = TAILQ_FIRST(&requests); |
860 | req != NULL && req->id != id; | 860 | req != NULL && req->id != id; |
861 | req = TAILQ_NEXT(req, tq)) | 861 | req = TAILQ_NEXT(req, tq)) |
862 | ; | 862 | ; |
@@ -1109,7 +1109,7 @@ do_upload(struct sftp_conn *conn, char *local_path, char *remote_path, | |||
1109 | debug3("SSH2_FXP_STATUS %d", status); | 1109 | debug3("SSH2_FXP_STATUS %d", status); |
1110 | 1110 | ||
1111 | /* Find the request in our queue */ | 1111 | /* Find the request in our queue */ |
1112 | for(ack = TAILQ_FIRST(&acks); | 1112 | for (ack = TAILQ_FIRST(&acks); |
1113 | ack != NULL && ack->id != r_id; | 1113 | ack != NULL && ack->id != r_id; |
1114 | ack = TAILQ_NEXT(ack, tq)) | 1114 | ack = TAILQ_NEXT(ack, tq)) |
1115 | ; | 1115 | ; |