diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2008-03-19 14:49:14 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2008-03-19 14:49:14 +0000 |
commit | 1aa5089a57b2e66a7bece5a20ff2f5cf8a518fe7 (patch) | |
tree | 92bd75acd05e1ed50141d6b3f34187fcb83728e2 /contrib/cvs | |
parent | 5109f5b5c777e07c392f40a2390f866459cb42d3 (diff) |
Merge rev 1.7: always upload new files, even if the timestamps match,
rev 1.2: fix a problem sometimes seen when doing checkouts from a local repo
and committing via remote cvs (a cvs -d override of the mismatched CVS/Root
files was missing) into cvs 1.11-20080310.
Note that rev 1.4 (default CVS_RSH to "ssh") will not be handled thru the
vendor's config.h.
Notes
Notes:
svn path=/head/; revision=177394
Diffstat (limited to 'contrib/cvs')
-rw-r--r-- | contrib/cvs/src/client.c | 46 |
1 files changed, 31 insertions, 15 deletions
diff --git a/contrib/cvs/src/client.c b/contrib/cvs/src/client.c index 318db4a4c388..1c8a5d0971e6 100644 --- a/contrib/cvs/src/client.c +++ b/contrib/cvs/src/client.c @@ -164,17 +164,22 @@ is_arg_a_parent_or_listed_dir (n, d) void *d; { char *directory = n->key; /* name of the dir sent to server */ - char *this_argv_elem = (char *) d; /* this argv element */ + char *this_argv_elem = xstrdup (d); /* this argv element */ + int retval; /* Say we should send this argument if the argument matches the beginning of a directory name sent to the server. This way, the server will know to start at the top of that directory hierarchy and descend. */ + strip_trailing_slashes (this_argv_elem); if (strncmp (directory, this_argv_elem, strlen (this_argv_elem)) == 0) - return 1; + retval = 1; + else + retval = 0; - return 0; + free (this_argv_elem); + return retval; } static int arg_should_not_be_sent_to_server PROTO((char *)); @@ -2783,7 +2788,8 @@ send_repository (dir, repos, update_dir) send_to_server (repos, 0); send_to_server ("\012", 1); - if (supported_request ("Static-directory")) + if (strcmp (cvs_cmd_name, "import") + && supported_request ("Static-directory")) { adm_name[0] = '\0'; if (dir[0] != '\0') @@ -2797,7 +2803,8 @@ send_repository (dir, repos, update_dir) send_to_server ("Static-directory\012", 0); } } - if (supported_request ("Sticky")) + if (strcmp (cvs_cmd_name, "import") + && supported_request ("Sticky")) { FILE *f; if (dir[0] == '\0') @@ -3840,7 +3847,7 @@ auth_server (root, lto_server, lfrom_server, verify_only, do_gssapi, hostinfo) int do_gssapi; struct hostent *hostinfo; { - char *username; /* the username we use to connect */ + char *username = ""; /* the username we use to connect */ char no_passwd = 0; /* gets set if no password found */ /* FIXME!!!!!!!!!!!!!!!!!! @@ -3924,9 +3931,8 @@ auth_server (root, lto_server, lfrom_server, verify_only, do_gssapi, hostinfo) send_to_server(end, 0); send_to_server("\012", 1); - /* Paranoia. */ - memset (password, 0, strlen (password)); - free (password); + free_cvs_password (password); + password = NULL; # else /* ! AUTH_CLIENT_SUPPORT */ error (1, 0, "INTERNAL ERROR: This client does not support pserver authentication"); # endif /* AUTH_CLIENT_SUPPORT */ @@ -4725,15 +4731,20 @@ start_rsh_server (root, to_server, from_server) /* If you're working through firewalls, you can set the CVS_RSH environment variable to a script which uses rsh to invoke another rsh on a proxy machine. */ - char *cvs_rsh = getenv ("CVS_RSH"); + char *env_cvs_rsh = getenv ("CVS_RSH"); + char *env_cvs_ssh = getenv ("CVS_SSH"); + char *cvs_rsh; char *cvs_server = getenv ("CVS_SERVER"); int i = 0; /* This needs to fit "rsh", "-b", "-l", "USER", "host", "cmd (w/ args)", and NULL. We leave some room to grow. */ char *rsh_argv[10]; - if (!cvs_rsh) - cvs_rsh = RSH_DFLT; + if (root->method == extssh_method) + cvs_rsh = env_cvs_ssh ? env_cvs_ssh : SSH_DFLT; + else + cvs_rsh = env_cvs_rsh ? env_cvs_rsh : RSH_DFLT; + if (!cvs_server) cvs_server = "cvs"; @@ -4787,14 +4798,19 @@ start_rsh_server (root, to_server, from_server) /* If you're working through firewalls, you can set the CVS_RSH environment variable to a script which uses rsh to invoke another rsh on a proxy machine. */ - char *cvs_rsh = getenv ("CVS_RSH"); + char *env_cvs_rsh = getenv ("CVS_RSH"); + char *env_cvs_ssh = getenv ("CVS_SSH"); + char *cvs_rsh; char *cvs_server = getenv ("CVS_SERVER"); char *command; int tofd, fromfd; int child_pid; - if (!cvs_rsh) - cvs_rsh = RSH_DFLT; + if (root->method == extssh_method) + cvs_rsh = env_cvs_ssh ? env_cvs_ssh : SSH_DFLT; + else + cvs_rsh = env_cvs_rsh ? env_cvs_rsh : RSH_DFLT; + if (!cvs_server) cvs_server = "cvs"; |