diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-02-01 19:07:14 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-02-01 19:07:14 +0000 |
commit | dae5a8d2fe650b63b8a5930e44ee701b2c7a1261 (patch) | |
tree | 3a77f3980c16877444aa93eae6ba66ea7411aff0 /usr.bin/rdistd | |
parent | ae963187e12199a38186593d19c2029893098a47 (diff) |
double semicolon; from Daniel Matic in PR 4929
Diffstat (limited to 'usr.bin/rdistd')
-rw-r--r-- | usr.bin/rdistd/server.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/rdistd/server.c b/usr.bin/rdistd/server.c index 5ee4666588b..da8d447c986 100644 --- a/usr.bin/rdistd/server.c +++ b/usr.bin/rdistd/server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.16 2003/07/07 14:39:26 mpech Exp $ */ +/* $OpenBSD: server.c,v 1.17 2006/02/01 19:06:24 otto Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. @@ -36,7 +36,7 @@ static char RCSid[] __attribute__((__unused__)) = "$From: server.c,v 1.10 1999/08/04 15:57:33 christos Exp $"; #else static char RCSid[] __attribute__((__unused__)) = -"$OpenBSD: server.c,v 1.16 2003/07/07 14:39:26 mpech Exp $"; +"$OpenBSD: server.c,v 1.17 2006/02/01 19:06:24 otto Exp $"; #endif static char sccsid[] __attribute__((__unused__)) = @@ -376,7 +376,7 @@ removefile(struct stat *statb, int silent) } ptarget = optarget; *ptarget++ = '/'; - cp = dp->d_name;; + cp = dp->d_name; while ((*ptarget++ = *cp++) != '\0') continue; ptarget--; @@ -458,7 +458,7 @@ doclean(char *cp) } ptarget = optarget; *ptarget++ = '/'; - cp = dp->d_name;; + cp = dp->d_name; while ((*ptarget++ = *cp++) != '\0') continue; ptarget--; |