diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2008-01-13 05:49:32 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2008-01-13 05:49:32 +0000 |
commit | cf9c5c1a566bda1bc3eaeee00091c457c12cc68c (patch) | |
tree | 8d8aae4a8bb167db64e23bb7f76f39014f36d45f /contrib/cvs/src/wrapper.c | |
parent | 83c36f7f985e86e33d46bc7d7fc4e648ca22226b (diff) |
Notes
Diffstat (limited to 'contrib/cvs/src/wrapper.c')
-rw-r--r-- | contrib/cvs/src/wrapper.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/cvs/src/wrapper.c b/contrib/cvs/src/wrapper.c index 548b3a506c24..512e96c6771d 100644 --- a/contrib/cvs/src/wrapper.c +++ b/contrib/cvs/src/wrapper.c @@ -93,9 +93,7 @@ void wrap_setup() else wrap_setup_already_done = 1; -#ifdef CLIENT_SUPPORT if (!current_parsed_root->isremote) -#endif { char *file; @@ -240,6 +238,7 @@ wrap_unparse_rcs_options (line, first_call_p) * Remove fmt str specifier other than %% or %s. And allow * only max_s %s specifiers */ +void wrap_clean_fmt_str(char *fmt, int max_s) { while (*fmt) { @@ -257,7 +256,6 @@ wrap_clean_fmt_str(char *fmt, int max_s) } fmt++; } - return; } /* @@ -418,7 +416,8 @@ wrap_add (line, isTemp) switch(opt){ case 'f': /* Before this is reenabled, need to address the problem in - commit.c (see http://www.cvshome.org/docs/infowrapper.html). */ + commit.c (see + http://ximbiot.com/cvs/cvshome/docs/infowrapper.html). */ error (1, 0, "-t/-f wrappers not supported by this version of CVS"); @@ -432,7 +431,8 @@ wrap_add (line, isTemp) break; case 't': /* Before this is reenabled, need to address the problem in - commit.c (see http://www.cvshome.org/docs/infowrapper.html). */ + commit.c (see + http://ximbiot.com/cvs/cvshome/docs/infowrapper.html). */ error (1, 0, "-t/-f wrappers not supported by this version of CVS"); |