summaryrefslogtreecommitdiff
path: root/usr.bin/ftp/fetch.c
diff options
context:
space:
mode:
authorRay Lai <ray@cvs.openbsd.org>2007-02-08 03:19:14 +0000
committerRay Lai <ray@cvs.openbsd.org>2007-02-08 03:19:14 +0000
commit59aeb4ed13b43d4686d8a9b72f7c55260ae5b36d (patch)
tree83c32770dc74bd6b19eb7880cfef4a5ec14b525d /usr.bin/ftp/fetch.c
parent7ca0801d7dbb070f6863b4ba315915a3f6ca69f2 (diff)
Remove double semicolons.
From Pierre Riteau <pierre dot riteau at free dot fr>. OK jaredy@ and moritz@.
Diffstat (limited to 'usr.bin/ftp/fetch.c')
-rw-r--r--usr.bin/ftp/fetch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ftp/fetch.c b/usr.bin/ftp/fetch.c
index 5a5f48175bf..f833f7cbdcf 100644
--- a/usr.bin/ftp/fetch.c
+++ b/usr.bin/ftp/fetch.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fetch.c,v 1.71 2007/02/03 05:18:40 ray Exp $ */
+/* $OpenBSD: fetch.c,v 1.72 2007/02/08 03:19:12 ray Exp $ */
/* $NetBSD: fetch.c,v 1.14 1997/08/18 10:20:20 lukem Exp $ */
/*-
@@ -38,7 +38,7 @@
*/
#if !defined(lint) && !defined(SMALL)
-static const char rcsid[] = "$OpenBSD: fetch.c,v 1.71 2007/02/03 05:18:40 ray Exp $";
+static const char rcsid[] = "$OpenBSD: fetch.c,v 1.72 2007/02/08 03:19:12 ray Exp $";
#endif /* not lint and not SMALL */
/*
@@ -410,7 +410,7 @@ again:
}
if (SSL_connect(ssl) <= 0) {
ERR_print_errors_fp(ttyout);
- goto cleanup_url_get;;
+ goto cleanup_url_get;
}
} else {
fin = fdopen(s, "r+");