diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2008-05-22 06:48:28 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2008-05-22 06:48:28 +0000 |
commit | 484c3a7bdbf1d54a184db5c091a5d6e9be9ebc57 (patch) | |
tree | fd3d5167aab0964f98af35c235221dc9023d6a4c /usr.bin/cvs | |
parent | 7d3114b5390cac637337c207e14f3414b7bcfa8d (diff) |
Error messages fixes; Stefan Sperling.
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/import.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/import.c b/usr.bin/cvs/import.c index 6d84993736c..9d7df15472c 100644 --- a/usr.bin/cvs/import.c +++ b/usr.bin/cvs/import.c @@ -1,4 +1,4 @@ -/* $OpenBSD: import.c,v 1.87 2008/03/01 20:49:44 joris Exp $ */ +/* $OpenBSD: import.c,v 1.88 2008/05/22 06:48:27 xsa Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -247,10 +247,10 @@ import_new(struct cvs_file *cf) rcs_branch_set(cf->file_rcs, branch); if (rcs_sym_add(cf->file_rcs, vendor_tag, branch) == -1) - fatal("import_new: failed to add release tag"); + fatal("import_new: failed to add vendor tag"); if (rcs_sym_add(cf->file_rcs, release_tag, brev) == -1) - fatal("import_new: failed to add vendor tag"); + fatal("import_new: failed to add release tag"); if (rcs_rev_add(cf->file_rcs, brev, logmsg, tstamp, NULL) == -1) fatal("import_new: failed to create first branch revision"); |