OpenBSD CVS

CVS log for src/usr.bin/cvs/admin.c


[BACK] Up to [local] / src / usr.bin / cvs

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.69 / (download) - annotate - [select for diffs], Mon Oct 19 19:51:20 2020 UTC (3 years, 6 months ago) by naddy
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, HEAD
Changes since 1.68: +10 -5 lines
Diff to previous 1.68 (colored)

Accommodate POSIX basename(3) that takes a non-const parameter and
may modify the string buffer.

ok florian@ millert@

Revision 1.68 / (download) - annotate - [select for diffs], Thu Jun 1 08:08:24 2017 UTC (6 years, 11 months ago) by joris
Branch: MAIN
CVS Tags: OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4, OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2
Changes since 1.67: +3 -3 lines
Diff to previous 1.67 (colored)

Stop looking at current_cvsroot->cr_method to figure out if we're remote or not.

Instead use cvsroot_is_local() and cvsroot_is_remote().

Revision 1.67 / (download) - annotate - [select for diffs], Thu Oct 13 20:51:25 2016 UTC (7 years, 7 months ago) by fcambus
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1
Changes since 1.66: +4 -4 lines
Diff to previous 1.66 (colored)

rcsnum_free() -> free() cleanups. From Michael W. Bombardieri.

OK millert@

Revision 1.66 / (download) - annotate - [select for diffs], Thu Nov 5 09:48:21 2015 UTC (8 years, 6 months ago) by nicm
Branch: MAIN
CVS Tags: OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.65: +4 -3 lines
Diff to previous 1.65 (colored)

Remove xfree(), like already done for RCS. From Michael W Bombardieri,
ok mmcc

Revision 1.65 / (download) - annotate - [select for diffs], Fri Jan 16 06:40:06 2015 UTC (9 years, 4 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.64: +6 -6 lines
Diff to previous 1.64 (colored)

Replace <sys/param.h> with <limits.h> and other less dirty headers where
possible.  Annotate <sys/param.h> lines with their current reasons.  Switch
to PATH_MAX, NGROUPS_MAX, HOST_NAME_MAX+1, LOGIN_NAME_MAX, etc.  Change
MIN() and MAX() to local definitions of MINIMUM() and MAXIMUM() where
sensible to avoid pulling in the pollution.  These are the files confirmed
through binary verification.
ok guenther, millert, doug (helped with the verification protocol)

Revision 1.64 / (download) - annotate - [select for diffs], Fri Sep 12 13:20:36 2008 UTC (15 years, 8 months ago) by tobias
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6, OPENBSD_5_5_BASE, OPENBSD_5_5, OPENBSD_5_4_BASE, OPENBSD_5_4, OPENBSD_5_3_BASE, OPENBSD_5_3, OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5
Changes since 1.63: +27 -34 lines
Diff to previous 1.63 (colored)

Be also very conservative about the supplied revision for state changes,
i.e. don't successfully parse "admin -s dead:1.1:1.1".

Changed global var logrev into function-specific all-purpose rev, too.

No objections xsa@

Revision 1.63 / (download) - annotate - [select for diffs], Fri Jun 20 16:32:06 2008 UTC (15 years, 11 months ago) by tobias
Branch: MAIN
CVS Tags: OPENBSD_4_4_BASE, OPENBSD_4_4
Changes since 1.62: +2 -2 lines
Diff to previous 1.62 (colored)

admin is only allowed on files which have an entry in CVS/Entries.

ok joris

Revision 1.62 / (download) - annotate - [select for diffs], Sat Jun 14 04:34:08 2008 UTC (15 years, 11 months ago) by tobias
Branch: MAIN
Changes since 1.61: +6 -2 lines
Diff to previous 1.61 (colored)

Conforming to RCS specification, it is possible but unlikely to encounter
an RCS file which has no head revision set.  Some commands actually can
work with them (log, status) so support these files. Fixes  A LOT of
possible segmentation faults.

ok joris

Revision 1.61 / (download) - annotate - [select for diffs], Fri Jun 13 17:15:13 2008 UTC (15 years, 11 months ago) by joris
Branch: MAIN
Changes since 1.60: +2 -2 lines
Diff to previous 1.60 (colored)

pass the complete path to cvs_file_get_cf() instead of reconstructing
it again in that function.

Revision 1.60 / (download) - annotate - [select for diffs], Wed Jun 11 01:43:35 2008 UTC (15 years, 11 months ago) by joris
Branch: MAIN
Changes since 1.59: +1 -3 lines
Diff to previous 1.59 (colored)

ofd is being closed in cvs_file_free(), no need to close it ourselfs

Revision 1.59 / (download) - annotate - [select for diffs], Thu May 22 15:45:01 2008 UTC (16 years ago) by tobias
Branch: MAIN
Changes since 1.58: +2 -2 lines
Diff to previous 1.58 (colored)

expension -> expansion

ok joris, xsa (quite some time ago)

Revision 1.58 / (download) - annotate - [select for diffs], Sun May 11 12:16:00 2008 UTC (16 years ago) by tobias
Branch: MAIN
Changes since 1.57: +6 -1 lines
Diff to previous 1.57 (colored)

If "cvs admin" encountered an entry in CVS/Entries for a file which has no
(longer an) RCS file in CVSROOT, both -- GNU cvs and OpenCVS -- segfaulted.

ok joris

Revision 1.57 / (download) - annotate - [select for diffs], Sun Mar 9 03:14:52 2008 UTC (16 years, 2 months ago) by joris
Branch: MAIN
Changes since 1.56: +2 -2 lines
Diff to previous 1.56 (colored)

proper repository locking:
- all read operations now look for a lock, and wait if present but never
  try to lock the tree themselfs anymore.
- all write operations lock the tree where needed.
- commit locks all relevant directories before even attempting to start.

Revision 1.56 / (download) - annotate - [select for diffs], Sun Mar 9 01:54:03 2008 UTC (16 years, 2 months ago) by joris
Branch: MAIN
Changes since 1.55: +2 -2 lines
Diff to previous 1.55 (colored)

pass user_supplied to struct cvs_file so it can be used
in the callbacks to verify if this file was specified on the command line.

Revision 1.55 / (download) - annotate - [select for diffs], Mon Feb 4 15:07:32 2008 UTC (16 years, 3 months ago) by tobias
Branch: MAIN
CVS Tags: OPENBSD_4_3_BASE, OPENBSD_4_3
Changes since 1.54: +2 -3 lines
Diff to previous 1.54 (colored)

Added -k flag support for all commands which support it.

OK joris@

Revision 1.54 / (download) - annotate - [select for diffs], Thu Jan 31 21:52:48 2008 UTC (16 years, 3 months ago) by tobias
Branch: MAIN
Changes since 1.53: +2 -2 lines
Diff to previous 1.53 (colored)

We have cvs_client_send_logmsg for transmission of log messages.

OK joris@ xsa@

Revision 1.53 / (download) - annotate - [select for diffs], Thu Jan 31 10:15:05 2008 UTC (16 years, 3 months ago) by tobias
Branch: MAIN
Changes since 1.52: +2 -2 lines
Diff to previous 1.52 (colored)

Replaced the unused cvs_command variable cmd_req with cmd_flags, which states
if the current command is supposed to use a working directory or if it is a
repository-only command (as of now checkout -p, rtag, rlog).

Makes the code simpler, easier to read and automagically fixes some issues
we encountered with these commands (for example if a working directory
exists, or "." operations are performed).

OK joris@, niallo@

Revision 1.52 / (download) - annotate - [select for diffs], Sat Sep 22 16:01:22 2007 UTC (16 years, 8 months ago) by joris
Branch: MAIN
Changes since 1.51: +2 -2 lines
Diff to previous 1.51 (colored)

better branching/sticky tag support, no branch commits yet though.

Revision 1.51 / (download) - annotate - [select for diffs], Thu Jun 28 21:38:09 2007 UTC (16 years, 10 months ago) by xsa
Branch: MAIN
CVS Tags: OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.50: +2 -2 lines
Diff to previous 1.50 (colored)

Sync revisions and time buffers size to be consistent with each others.
Simplifies further size tweaks if needed.
OK niallo@ ray@.

Revision 1.50 / (download) - annotate - [select for diffs], Thu Feb 22 06:42:09 2007 UTC (17 years, 2 months ago) by otto
Branch: MAIN
CVS Tags: OPENBSD_4_1_BASE, OPENBSD_4_1
Changes since 1.49: +9 -3 lines
Diff to previous 1.49 (colored)

general includes cleanup sweep. ok joris@ niallo@

Revision 1.49 / (download) - annotate - [select for diffs], Sat Feb 17 18:23:43 2007 UTC (17 years, 3 months ago) by xsa
Branch: MAIN
Changes since 1.48: +2 -3 lines
Diff to previous 1.48 (colored)

cvs_path_cat() removal since we can now easily handle that
functionality w/ xsnprintf(); Initial diff started by thib@.
OK thib@ joris@.

Revision 1.48 / (download) - annotate - [select for diffs], Fri Feb 9 03:49:15 2007 UTC (17 years, 3 months ago) by joris
Branch: MAIN
Changes since 1.47: +2 -2 lines
Diff to previous 1.47 (colored)

remove the cvs_file_classify() `loud' argument, it was used
in the old school days and serves no purpose what so ever now.

otto@ mentioned this to me a while ago

Revision 1.47 / (download) - annotate - [select for diffs], Thu Feb 1 09:45:43 2007 UTC (17 years, 3 months ago) by xsa
Branch: MAIN
Changes since 1.46: +21 -3 lines
Diff to previous 1.46 (colored)

add support for [-k mode]; tests/input/ok otto@.

Revision 1.46 / (download) - annotate - [select for diffs], Thu Jan 25 18:56:33 2007 UTC (17 years, 3 months ago) by otto
Branch: MAIN
Changes since 1.45: +2 -7 lines
Diff to previous 1.45 (colored)

use more stack allocations for fixed size buffers. ok xsa@ joris@

Revision 1.45 / (download) - annotate - [select for diffs], Sun Jan 21 11:20:10 2007 UTC (17 years, 4 months ago) by xsa
Branch: MAIN
Changes since 1.44: +54 -4 lines
Diff to previous 1.44 (colored)

add support for the -A flag;
wrap some lines while there.
OK joris@.

Revision 1.44 / (download) - annotate - [select for diffs], Thu Jan 11 02:35:55 2007 UTC (17 years, 4 months ago) by joris
Branch: MAIN
Changes since 1.43: +2 -1 lines
Diff to previous 1.43 (colored)

in a remote setup:
do not connect to the remote server until we are sure all the options
passed to the commands are valid.

noticed by xsa@

Revision 1.43 / (download) - annotate - [select for diffs], Tue Jan 2 00:02:17 2007 UTC (17 years, 4 months ago) by xsa
Branch: MAIN
Changes since 1.42: +3 -1 lines
Diff to previous 1.42 (colored)

missing xfree()'s; spotted by joris.

Revision 1.42 / (download) - annotate - [select for diffs], Mon Jan 1 23:49:06 2007 UTC (17 years, 4 months ago) by xsa
Branch: MAIN
Changes since 1.41: +39 -3 lines
Diff to previous 1.41 (colored)

add support for [-s state[:rev]]

Revision 1.41 / (download) - annotate - [select for diffs], Sun Dec 31 15:38:11 2006 UTC (17 years, 4 months ago) by xsa
Branch: MAIN
Changes since 1.40: +4 -1 lines
Diff to previous 1.40 (colored)

client-side bits might be useful too for -m...

Revision 1.40 / (download) - annotate - [select for diffs], Sun Dec 31 15:33:23 2006 UTC (17 years, 4 months ago) by xsa
Branch: MAIN
Changes since 1.39: +28 -5 lines
Diff to previous 1.39 (colored)

add support for -m option.

Revision 1.39 / (download) - annotate - [select for diffs], Mon Nov 13 12:51:58 2006 UTC (17 years, 6 months ago) by xsa
Branch: MAIN
Changes since 1.38: +5 -2 lines
Diff to previous 1.38 (colored)

Run cvs_file_classify() so local mode works...

Revision 1.38 / (download) - annotate - [select for diffs], Mon Nov 13 11:50:11 2006 UTC (17 years, 6 months ago) by xsa
Branch: MAIN
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored)

fix check on required arguments.

Revision 1.37 / (download) - annotate - [select for diffs], Mon Nov 13 11:04:19 2006 UTC (17 years, 6 months ago) by xsa
Branch: MAIN
Changes since 1.36: +3 -1 lines
Diff to previous 1.36 (colored)

Write rcs file when finished.

Revision 1.36 / (download) - annotate - [select for diffs], Mon Nov 13 10:42:28 2006 UTC (17 years, 6 months ago) by xsa
Branch: MAIN
Changes since 1.35: +47 -1 lines
Diff to previous 1.35 (colored)

Add support for [-a users] and [-o rev].

Revision 1.35 / (download) - annotate - [select for diffs], Mon Nov 13 10:24:30 2006 UTC (17 years, 6 months ago) by xsa
Branch: MAIN
Changes since 1.34: +112 -282 lines
Diff to previous 1.34 (colored)

bring back basic admin command, mostly based on OpenRCS rcs(1).
not linked to build yet.

Revision 1.34, Sat May 27 03:30:30 2006 UTC (17 years, 11 months ago) by joris
Branch: MAIN
Changes since 1.33: +1 -1 lines
FILE REMOVED

commit the new opencvs code, i have been hacking on
this for the past 2 weeks now and it should go in at
the start of the hackathon so others can help out.

this code is a lot safer, smarter, faster and best of
all it is actually doing what it is suppose to do!

basic checkout, update, status, diff and commit are
working in local mode only.
there is no support for any remote setups now.

Revision 1.33 / (download) - annotate - [select for diffs], Mon Apr 10 08:08:00 2006 UTC (18 years, 1 month ago) by xsa
Branch: MAIN
Changes since 1.32: +3 -3 lines
Diff to previous 1.32 (colored)

change rcs_kwexp_set() return type to void and simplify its use. OK niallo@.

Revision 1.32 / (download) - annotate - [select for diffs], Sat Apr 1 20:11:25 2006 UTC (18 years, 1 month ago) by joris
Branch: MAIN
Changes since 1.31: +3 -4 lines
Diff to previous 1.31 (colored)

fix some bugs that lint discovered for us.
ok niallo@

Revision 1.31 / (download) - annotate - [select for diffs], Fri Mar 24 13:34:27 2006 UTC (18 years, 1 month ago) by ray
Branch: MAIN
Changes since 1.30: +2 -1 lines
Diff to previous 1.30 (colored)

Remove unused variables, better integer types, prevent fallthroughs.
Found by lint.

Compare char * variables against NULL for consistency and add
parentheses around complicated comparisons, suggested by xsa@.

OK xsa@

Revision 1.30 / (download) - annotate - [select for diffs], Thu Mar 16 09:06:19 2006 UTC (18 years, 2 months ago) by xsa
Branch: MAIN
Changes since 1.29: +2 -3 lines
Diff to previous 1.29 (colored)

zap more unused variables.

Revision 1.29 / (download) - annotate - [select for diffs], Wed Feb 1 08:33:18 2006 UTC (18 years, 3 months ago) by xsa
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_9
Changes since 1.28: +12 -5 lines
Diff to previous 1.28 (colored)

cannot admin newly added file.

Revision 1.28 / (download) - annotate - [select for diffs], Mon Jan 30 17:58:47 2006 UTC (18 years, 3 months ago) by xsa
Branch: MAIN
Changes since 1.27: +2 -2 lines
Diff to previous 1.27 (colored)

strerror() -> rcs_errstr() when passing rcs_errno as argument;

Revision 1.27 / (download) - annotate - [select for diffs], Fri Jan 27 15:26:38 2006 UTC (18 years, 3 months ago) by xsa
Branch: MAIN
Changes since 1.26: +4 -4 lines
Diff to previous 1.26 (colored)

more errors handling cleanup;

Revision 1.26 / (download) - annotate - [select for diffs], Mon Jan 2 08:11:56 2006 UTC (18 years, 4 months ago) by xsa
Branch: MAIN
Changes since 1.25: +2 -10 lines
Diff to previous 1.25 (colored)

#include's cleanup; ok joris@ niallo@.

Revision 1.25 / (download) - annotate - [select for diffs], Fri Dec 30 02:03:28 2005 UTC (18 years, 4 months ago) by joris
Branch: MAIN
Changes since 1.24: +72 -82 lines
Diff to previous 1.24 (colored)

major cleanup of the functions handling the remote cvs protocol.
makes the code a lot more readable and understandable.

ok xsa@ and niallo@

Revision 1.24 / (download) - annotate - [select for diffs], Thu Dec 22 14:59:54 2005 UTC (18 years, 5 months ago) by xsa
Branch: MAIN
Changes since 1.23: +2 -3 lines
Diff to previous 1.23 (colored)

cvs_rcs_getpath() cannot fail anymore;

Revision 1.23 / (download) - annotate - [select for diffs], Wed Jul 27 16:42:19 2005 UTC (18 years, 9 months ago) by xsa
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE, OPENBSD_3_8
Changes since 1.22: +2 -2 lines
Diff to previous 1.22 (colored)

use LP_NOTICE instead of LP_INFO where appropriate;

Revision 1.22 / (download) - annotate - [select for diffs], Mon Jul 25 12:05:43 2005 UTC (18 years, 9 months ago) by xsa
Branch: MAIN
Changes since 1.21: +5 -5 lines
Diff to previous 1.21 (colored)

KNF;

Revision 1.21 / (download) - annotate - [select for diffs], Mon Jul 18 07:22:23 2005 UTC (18 years, 10 months ago) by xsa
Branch: MAIN
Changes since 1.20: +3 -2 lines
Diff to previous 1.20 (colored)

be consistent w/ warning messages (and handle -Q);

Revision 1.20 / (download) - annotate - [select for diffs], Thu Jul 14 06:50:50 2005 UTC (18 years, 10 months ago) by xsa
Branch: MAIN
Changes since 1.19: +5 -11 lines
Diff to previous 1.19 (colored)

use cvs_rcs_getpath();

Revision 1.19 / (download) - annotate - [select for diffs], Mon Jul 11 08:32:36 2005 UTC (18 years, 10 months ago) by xsa
Branch: MAIN
Changes since 1.18: +7 -1 lines
Diff to previous 1.18 (colored)

add info message;

Revision 1.18 / (download) - annotate - [select for diffs], Thu Jul 7 14:27:57 2005 UTC (18 years, 10 months ago) by joris
Branch: MAIN
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored)



remove trailing whitespaces

from deraadt@

Revision 1.17 / (download) - annotate - [select for diffs], Tue May 31 08:58:47 2005 UTC (18 years, 11 months ago) by xsa
Branch: MAIN
Changes since 1.16: +3 -4 lines
Diff to previous 1.16 (colored)

headers ordering (alphabetically) and cleanup, from mbalmer@ and myself;

Revision 1.16 / (download) - annotate - [select for diffs], Wed May 25 10:23:57 2005 UTC (18 years, 11 months ago) by jfb
Branch: MAIN
Changes since 1.15: +93 -81 lines
Diff to previous 1.15 (colored)

split cvs_admin_file() into the local and remote versions and do
some cleanup

Revision 1.15 / (download) - annotate - [select for diffs], Tue May 24 04:12:25 2005 UTC (19 years ago) by jfb
Branch: MAIN
Changes since 1.14: +24 -17 lines
Diff to previous 1.14 (colored)

Merge the cvs_cmd and cvs_cmd_info structures and add the necessary
fields to hook local versions of the commands.  This needs to go in
before it gets any bigger

ok joris

Revision 1.14 / (download) - annotate - [select for diffs], Fri May 20 20:00:53 2005 UTC (19 years ago) by joris
Branch: MAIN
Changes since 1.13: +8 -2 lines
Diff to previous 1.13 (colored)



correct wrong error code usage.

ok jfb@, xsa@

Revision 1.13 / (download) - annotate - [select for diffs], Mon Apr 18 21:02:49 2005 UTC (19 years, 1 month ago) by jfb
Branch: MAIN
Changes since 1.12: +2 -11 lines
Diff to previous 1.12 (colored)

Modify the CVSFILE structure using a union to keep information about
both files and directories.  We can now keep the revision number for
regular files, and don't need to fetch the appropriate entry in the
command callbacks.  This saves a huge amount of parsing on Entries
files.

ok joris@

Revision 1.12 / (download) - annotate - [select for diffs], Sat Apr 16 19:05:02 2005 UTC (19 years, 1 month ago) by xsa
Branch: MAIN
Changes since 1.11: +10 -3 lines
Diff to previous 1.11 (colored)

snprintf return value check; joris ok

Revision 1.11 / (download) - annotate - [select for diffs], Tue Apr 12 14:58:40 2005 UTC (19 years, 1 month ago) by joris
Branch: MAIN
Changes since 1.10: +30 -30 lines
Diff to previous 1.10 (colored)



introduce our own set of error codes used by the commands to report
what exactly went wrong in case of an error.

ok jfb@

Revision 1.10 / (download) - annotate - [select for diffs], Mon Apr 11 18:02:58 2005 UTC (19 years, 1 month ago) by joris
Branch: MAIN
Changes since 1.9: +1 -2 lines
Diff to previous 1.9 (colored)



don't include sysexits.h now we don't use those error codes
anymore.

Revision 1.9 / (download) - annotate - [select for diffs], Mon Apr 11 17:56:27 2005 UTC (19 years, 1 month ago) by joris
Branch: MAIN
Changes since 1.8: +5 -5 lines
Diff to previous 1.8 (colored)



remove EX_USAGE error codes

ok jfb@

Revision 1.8 / (download) - annotate - [select for diffs], Sun Apr 3 17:32:50 2005 UTC (19 years, 1 month ago) by xsa
Branch: MAIN
Changes since 1.7: +24 -24 lines
Diff to previous 1.7 (colored)

first round of EX_* exit codes removal; ok joris@.

Revision 1.7 / (download) - annotate - [select for diffs], Wed Mar 30 17:43:04 2005 UTC (19 years, 1 month ago) by joris
Branch: MAIN
Changes since 1.6: +86 -110 lines
Diff to previous 1.6 (colored)



move all the client commands to the new command framework.
eliminates a lot of duplicate code.

ok jfb@

Revision 1.6 / (download) - annotate - [select for diffs], Sat Mar 26 08:09:54 2005 UTC (19 years, 1 month ago) by tedu
Branch: MAIN
Changes since 1.5: +3 -2 lines
Diff to previous 1.5 (colored)

fix a variety of things i found at coverity.  ok joris@

Revision 1.5 / (download) - annotate - [select for diffs], Fri Mar 11 16:23:34 2005 UTC (19 years, 2 months ago) by joris
Branch: MAIN
CVS Tags: OPENBSD_3_7_BASE, OPENBSD_3_7
Changes since 1.4: +26 -7 lines
Diff to previous 1.4 (colored)



support the remaining options as well.

ok jfb@, xsa@

Revision 1.4 / (download) - annotate - [select for diffs], Tue Mar 8 00:20:39 2005 UTC (19 years, 2 months ago) by joris
Branch: MAIN
Changes since 1.3: +3 -2 lines
Diff to previous 1.3 (colored)



don't forget to send options to the server when they are specified.

ok jfb@

Revision 1.3 / (download) - annotate - [select for diffs], Mon Mar 7 19:41:07 2005 UTC (19 years, 2 months ago) by joris
Branch: MAIN
Changes since 1.2: +9 -11 lines
Diff to previous 1.2 (colored)



use rcs_kflag_get() and RCS_KWEXP_INVAL() to check for valid
RCS keyword expansion modes, also call rcs_kflag_usage()
when an invalid mode is specified.

ok jfb@

Revision 1.2 / (download) - annotate - [select for diffs], Mon Mar 7 16:25:48 2005 UTC (19 years, 2 months ago) by joris
Branch: MAIN
Changes since 1.1: +2 -1 lines
Diff to previous 1.1 (colored)



free rcs when we are done using it.

ok xsa@

Revision 1.1 / (download) - annotate - [select for diffs], Sun Mar 6 21:09:00 2005 UTC (19 years, 2 months ago) by joris
Branch: MAIN



initial support for the admin command. Not all options are working yet.

ok xsa@ jfb@

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.