diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2006-02-08 18:42:42 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2006-02-08 18:42:42 +0000 |
commit | b00b7f777d7ba91d56f519ad5fe7c6cd9bbcf3ac (patch) | |
tree | 1eaf8d3a7b93d8b187978cb41983b6aa97ec23bd /usr.bin/cvs/import.c | |
parent | 69f56bdc2cebc239c7921b2bc23eea8ce4882c7d (diff) |
once again, we have to unbreak stuff xsa broke on his own.
seriously xavier, I might be in the carribean but you are drinking
all the rum and commiting shit drunk.
Diffstat (limited to 'usr.bin/cvs/import.c')
-rw-r--r-- | usr.bin/cvs/import.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/import.c b/usr.bin/cvs/import.c index f3693584856..47d34231ef0 100644 --- a/usr.bin/cvs/import.c +++ b/usr.bin/cvs/import.c @@ -1,4 +1,4 @@ -/* $OpenBSD: import.c,v 1.38 2006/01/30 17:58:47 xsa Exp $ */ +/* $OpenBSD: import.c,v 1.39 2006/02/08 18:42:41 joris Exp $ */ /* * Copyright (c) 2004 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -280,7 +280,7 @@ cvs_import_local(CVSFILE *cf, void *arg) cvs_printf("N %s\n", fpath); - if ((rf = rcs_open(rpath, RCS_RDWR|RCS_CREATE)) == NULL); + if ((rf = rcs_open(rpath, RCS_RDWR|RCS_CREATE)) == NULL) fatal("cvs_import_local: rcs_open: `%s': %s", rpath, rcs_errstr(rcs_errno)); |