diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2007-02-08 03:19:14 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2007-02-08 03:19:14 +0000 |
commit | 59aeb4ed13b43d4686d8a9b72f7c55260ae5b36d (patch) | |
tree | 83c32770dc74bd6b19eb7880cfef4a5ec14b525d | |
parent | 7ca0801d7dbb070f6863b4ba315915a3f6ca69f2 (diff) |
Remove double semicolons.
From Pierre Riteau <pierre dot riteau at free dot fr>.
OK jaredy@ and moritz@.
-rw-r--r-- | usr.bin/ftp/fetch.c | 6 | ||||
-rw-r--r-- | usr.bin/oldrdist/server.c | 8 |
2 files changed, 7 insertions, 7 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+"); diff --git a/usr.bin/oldrdist/server.c b/usr.bin/oldrdist/server.c index 775201b9329..d52898383be 100644 --- a/usr.bin/oldrdist/server.c +++ b/usr.bin/oldrdist/server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.29 2005/07/04 01:54:10 djm Exp $ */ +/* $OpenBSD: server.c,v 1.30 2007/02/08 03:19:13 ray Exp $ */ /* * Copyright (c) 1983, 1993 @@ -31,7 +31,7 @@ #ifndef lint /* from: static char sccsid[] = "@(#)server.c 8.1 (Berkeley) 6/9/93"; */ -static char *rcsid = "$OpenBSD: server.c,v 1.29 2005/07/04 01:54:10 djm Exp $"; +static char *rcsid = "$OpenBSD: server.c,v 1.30 2007/02/08 03:19:13 ray Exp $"; #endif /* not lint */ #include <sys/wait.h> @@ -1253,7 +1253,7 @@ clean(cp) } tp = otp; *tp++ = '/'; - cp = dp->d_name;; + cp = dp->d_name; while (*tp++ = *cp++) ; tp--; @@ -1333,7 +1333,7 @@ removeit(stp) } tp = otp; *tp++ = '/'; - cp = dp->d_name;; + cp = dp->d_name; while (*tp++ = *cp++) ; tp--; |