summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoris Vink <joris@cvs.openbsd.org>2006-04-02 02:02:28 +0000
committerJoris Vink <joris@cvs.openbsd.org>2006-04-02 02:02:28 +0000
commit48210169bebec420976b4095f024e342838b29b2 (patch)
treea6d9bd24156b9c1328ab39a3b3e63dc1f3ae402b
parentba47cc3603fd9b578c7c18db6c41a60dd45e8669 (diff)
spacing;
-rw-r--r--usr.bin/cvs/file.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/usr.bin/cvs/file.c b/usr.bin/cvs/file.c
index 5e2f5718f03..807d139b774 100644
--- a/usr.bin/cvs/file.c
+++ b/usr.bin/cvs/file.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: file.c,v 1.134 2006/01/02 08:11:56 xsa Exp $ */
+/* $OpenBSD: file.c,v 1.135 2006/04/02 02:02:27 joris Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -34,7 +34,6 @@
#define CVS_CHAR_ISMETA(c) ((c == '*') || (c == '?') || (c == '['))
-
/* ignore pattern */
struct cvs_ignpat {
char ip_pat[MAXNAMLEN];
@@ -42,7 +41,6 @@ struct cvs_ignpat {
TAILQ_ENTRY(cvs_ignpat) ip_list;
};
-
/*
* Standard patterns to ignore.
*/
@@ -82,14 +80,12 @@ static const char *cvs_ign_std[] = {
#endif
};
-
/*
* Entries in the CVS/Entries file with a revision of '0' have only been
* added. Compare against this revision to see if this is the case
*/
static RCSNUM *cvs_addedrev;
-
TAILQ_HEAD(, cvs_ignpat) cvs_ign_pats;
static int cvs_file_getdir(CVSFILE *, int, int (*)(CVSFILE *, void *),
@@ -103,7 +99,6 @@ static CVSFILE *cvs_file_alloc(const char *, u_int);
static CVSFILE *cvs_file_lget(const char *, int, CVSFILE *, CVSENTRIES *,
struct cvs_ent *);
-
/*
* cvs_file_init()
*
@@ -155,7 +150,6 @@ cvs_file_init(void)
return (0);
}
-
/*
* cvs_file_ignore()
*
@@ -185,7 +179,6 @@ cvs_file_ignore(const char *pat)
return (0);
}
-
/*
* cvs_file_chkign()
*
@@ -213,7 +206,6 @@ cvs_file_chkign(const char *file)
return (0);
}
-
/*
* cvs_file_create()
*