summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsobrado <sobrado@openbsd.org>2011-07-14 16:38:39 +0000
committersobrado <sobrado@openbsd.org>2011-07-14 16:38:39 +0000
commitcfce57ea2af9bc1e5ac1e1a15cd6cfc3acee8132 (patch)
tree732e27b8f95c89aeb75e0f48310812fb707ce7b2
parentWe must not call xl_wol_power() from xl_stop(). If we do the device (diff)
downloadwireguard-openbsd-cfce57ea2af9bc1e5ac1e1a15cd6cfc3acee8132.tar.xz
wireguard-openbsd-cfce57ea2af9bc1e5ac1e1a15cd6cfc3acee8132.zip
spacing, no binary change.
-rw-r--r--usr.bin/rcs/rcs.c3
-rw-r--r--usr.bin/rcs/rcsparse.c8
-rw-r--r--usr.bin/rcs/rlog.c6
3 files changed, 8 insertions, 9 deletions
diff --git a/usr.bin/rcs/rcs.c b/usr.bin/rcs/rcs.c
index 5f3a54daf56..0755e6baf03 100644
--- a/usr.bin/rcs/rcs.c
+++ b/usr.bin/rcs/rcs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rcs.c,v 1.77 2011/07/06 15:36:52 nicm Exp $ */
+/* $OpenBSD: rcs.c,v 1.78 2011/07/14 16:38:39 sobrado Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -1083,7 +1083,6 @@ rcs_delta_stats(struct rcs_delta *rdp, int *ladded, int *lremoved)
*ladded = added;
*lremoved = removed;
}
-
/*
* rcs_rev_add()
diff --git a/usr.bin/rcs/rcsparse.c b/usr.bin/rcs/rcsparse.c
index 6306c00badf..b3f99b3e02f 100644
--- a/usr.bin/rcs/rcsparse.c
+++ b/usr.bin/rcs/rcsparse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rcsparse.c,v 1.6 2011/05/04 17:37:33 nicm Exp $ */
+/* $OpenBSD: rcsparse.c,v 1.7 2011/07/14 16:38:39 sobrado Exp $ */
/*
* Copyright (c) 2010 Tobias Stoeckmann <tobias@openbsd.org>
*
@@ -923,21 +923,21 @@ rcsparse_token(RCSFILE *rfp, int allowed)
}
return (ret);
/* NOTREACHED */
- case ':':
+ case ':':
type = RCS_TOK_COLON;
if (type & allowed)
return (type);
rcsparse_warnx(rfp, "unexpected token \"%c\"", c);
return (0);
/* NOTREACHED */
- case ';':
+ case ';':
type = RCS_TOK_SCOLON;
if (type & allowed)
return (type);
rcsparse_warnx(rfp, "unexpected token \"%c\"", c);
return (0);
/* NOTREACHED */
- case ',':
+ case ',':
type = RCS_TOK_COMMA;
if (type & allowed)
return (type);
diff --git a/usr.bin/rcs/rlog.c b/usr.bin/rcs/rlog.c
index 8f6ecf0874b..0b95059453d 100644
--- a/usr.bin/rcs/rlog.c
+++ b/usr.bin/rcs/rlog.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rlog.c,v 1.64 2010/07/30 21:47:18 ray Exp $ */
+/* $OpenBSD: rlog.c,v 1.65 2011/07/14 16:38:39 sobrado Exp $ */
/*
* Copyright (c) 2005, 2009 Joris Vink <joris@openbsd.org>
* Copyright (c) 2005, 2006 Xavier Santolaria <xsa@openbsd.org>
@@ -531,7 +531,7 @@ rlog_rev_print(struct rcs_delta *rdp)
nrdp = rdp;
else
nrdp = TAILQ_NEXT(rdp, rd_list);
-
+
/*
* We do not write diff stats for the first revision of the default
* branch, since it was not a diff but a full text.
@@ -546,7 +546,7 @@ rlog_rev_print(struct rcs_delta *rdp)
printf(" lines: +%d -%d", removed, added);
}
printf("\n");
-
+
if (!TAILQ_EMPTY(&(rdp->rd_branches))) {
printf("branches:");
TAILQ_FOREACH(rb, &(rdp->rd_branches), rb_list) {