=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rcs/ci.c,v retrieving revision 1.32 retrieving revision 1.33 diff -c -r1.32 -r1.33 *** src/usr.bin/rcs/ci.c 2005/10/16 01:55:36 1.32 --- src/usr.bin/rcs/ci.c 2005/10/16 11:29:28 1.33 *************** *** 1,4 **** ! /* $OpenBSD: ci.c,v 1.32 2005/10/16 01:55:36 joris Exp $ */ /* * Copyright (c) 2005 Niall O'Higgins * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: ci.c,v 1.33 2005/10/16 11:29:28 niallo Exp $ */ /* * Copyright (c) 2005 Niall O'Higgins * All rights reserved. *************** *** 123,128 **** --- 123,129 ---- case 'm': rcs_msg = rcs_optarg; interactive = 0; + cvs_printf("rcs_msg: %s\n", rcs_msg); break; case 'q': verbose = 0; *************** *** 232,238 **** buf); (void)unlink(argv[i]); if (lkmode != 0) ! checkout_rev(file, frev, argv[i], lkmode, username); rcs_close(file); cvs_printf("done\n"); continue; --- 233,240 ---- buf); (void)unlink(argv[i]); if (lkmode != 0) ! checkout_rev(file, frev, argv[i], lkmode, ! username); rcs_close(file); cvs_printf("done\n"); continue; *************** *** 292,298 **** if (date == DATE_MTIME) { struct stat sb; if (stat(argv[i], &sb) != 0) { ! cvs_log(LP_ERRNO, "failed to stat: `%s'", argv[i]); rcs_close(file); continue; } --- 294,301 ---- if (date == DATE_MTIME) { struct stat sb; if (stat(argv[i], &sb) != 0) { ! cvs_log(LP_ERRNO, "failed to stat: `%s'", ! argv[i]); rcs_close(file); continue; }