=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rcs/rcs.c,v retrieving revision 1.66 retrieving revision 1.67 diff -c -r1.66 -r1.67 *** src/usr.bin/rcs/rcs.c 2010/10/05 15:13:04 1.66 --- src/usr.bin/rcs/rcs.c 2010/10/05 15:16:48 1.67 *************** *** 1,4 **** ! /* $OpenBSD: rcs.c,v 1.66 2010/10/05 15:13:04 tobias Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: rcs.c,v 1.67 2010/10/05 15:16:48 tobias Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. *************** *** 1027,1050 **** xfree(file->rf_comment); file->rf_comment = tmp; file->rf_flags &= ~RCS_SYNCED; - } - - /* - * rcs_tag_resolve() - * - * Retrieve the revision number corresponding to the tag for the RCS - * file . - */ - RCSNUM * - rcs_tag_resolve(RCSFILE *file, const char *tag) - { - RCSNUM *num; - - if ((num = rcsnum_parse(tag)) == NULL) { - num = rcs_sym_getrev(file, tag); - } - - return (num); } int --- 1027,1032 ----