=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/rcsnum.c,v retrieving revision 1.50 retrieving revision 1.51 diff -c -r1.50 -r1.51 *** src/usr.bin/cvs/rcsnum.c 2008/01/31 22:19:36 1.50 --- src/usr.bin/cvs/rcsnum.c 2008/02/09 14:03:20 1.51 *************** *** 1,4 **** ! /* $OpenBSD: rcsnum.c,v 1.50 2008/01/31 22:19:36 tobias Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: rcsnum.c,v 1.51 2008/02/09 14:03:20 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. *************** *** 32,39 **** static void rcsnum_setsize(RCSNUM *, u_int); static char *rcsnum_itoa(u_int16_t, char *, size_t); - int rcsnum_flags; - /* * rcsnum_alloc() * --- 32,37 ---- *************** *** 287,294 **** * completely insane and not understandable reason in that output. * */ ! if (nump->rn_len > 2 && nump->rn_id[nump->rn_len - 1] == 0 ! && !(rcsnum_flags & RCSNUM_NO_MAGIC)) { /* * Look for ".0.x" at the end of the branch number. */ --- 285,291 ---- * completely insane and not understandable reason in that output. * */ ! if (nump->rn_len > 2 && nump->rn_id[nump->rn_len - 1] == 0) { /* * Look for ".0.x" at the end of the branch number. */