Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-05-27 | cvs_noexec check; ok jfbeers | Xavier Santolaria | |
2005-05-27 | - check strlcpy() return values for truncation | Jean-Francois Brousseau | |
- in cvs_remove_dir(), return failure if we fail to unlink the base directory, and return -1 on error to respect the general util convention - missing function documentation | |||
2005-05-26 | make cvs_getln() return the length of the line that was read, so we | Jean-Francois Brousseau | |
don't have to call strlen() right after | |||
2005-05-26 | don't keep a pointer to the file handle in CVSENTRIES, it is only | Jean-Francois Brousseau | |
used in cvs_ent_write(), and simplify path building a bit | |||
2005-05-26 | don't append strerror(errno) to error messages if we use LP_ERRNO | Jean-Francois Brousseau | |
2005-05-26 | - remove cvs_ent_getent(), it's not used anymore | Jean-Francois Brousseau | |
- don't use strcmp() to compare one-character strings | |||
2005-05-26 | fix `editors' and `unedit' commands usage.. | Xavier Santolaria | |
2005-05-26 | fix usage.. | Xavier Santolaria | |
2005-05-26 | remove the trailing \n from the ctime() timestamp | Jean-Francois Brousseau | |
2005-05-26 | send the Checkin-time request along with the file's timestamp when | Jean-Francois Brousseau | |
running in client mode with the -d flag. The timestamp format is the same as ctime(3), as opposed to GNU CVS, which uses Yet Another Timestamp Format to make this more complicated... | |||
2005-05-26 | first part of real pruning support | Joris Vink | |
okay jfb@ | |||
2005-05-26 | fix remaining issues with regards to branch numbering and add the | Jean-Francois Brousseau | |
vendor tag to the list of symbols | |||
2005-05-26 | add a couple of functions to go from branch numbers to revisions and | Jean-Francois Brousseau | |
vice versa, and fix RCSNUM_ISBRANCH() | |||
2005-05-26 | support the -b option in local mode as well and rearrange the branch | Jean-Francois Brousseau | |
code a bit to get rid of an annoying global. Also remove a memory leak by adding a cleanup handler and print the number of conflicts created while importing | |||
2005-05-25 | skeleton for the edit-related functions, not linked in yet | Jean-Francois Brousseau | |
2005-05-25 | unused code | Jean-Francois Brousseau | |
2005-05-25 | support the -d flag in local mode (GNU CVS ignores that flag and even | Jean-Francois Brousseau | |
kills a linux box regardless of the size of the import) | |||
2005-05-25 | modify rcs_rev_add() to accept a time_t argument to explicitly set | Jean-Francois Brousseau | |
the revision's timestamp (-1 is equivalent to using the current time) | |||
2005-05-25 | split cvs_admin_file() into the local and remote versions and do | Jean-Francois Brousseau | |
some cleanup | |||
2005-05-25 | assume that a file is modified if its timestamp is lower | Jean-Francois Brousseau | |
than the value found in Entries. This can't really hurt, as the server will simply ignore it if it's not really modified | |||
2005-05-25 | when importing a file in local mode, add the first two revisions | Jean-Francois Brousseau | |
and set the head to revision 1.1 | |||
2005-05-25 | - basic code for rcs_rev_add() and rcs_rev_remove(), does not | Jean-Francois Brousseau | |
handle deltatexts yet - fix rcs_head_set() by allocating the head pointer if there was no previous head revision - initialize subnodes list correctly for RCS deltas - fix a crash in rcs_strprint() on NULL strings - | |||
2005-05-25 | add cvs_comment_lookup() and a suffix -> comment leader lookup table | Jean-Francois Brousseau | |
to determine the appropriate comment leader for a file | |||
2005-05-25 | add the RCS_ERR_ERRNO code to indicate that the actual error code is | Jean-Francois Brousseau | |
in errno, fix cvs_errstr() to return the appropriate string, and sprinkle some error setting where appropriate | |||
2005-05-25 | fix version by adding an init handler which sets the argument count | Jean-Francois Brousseau | |
correctly | |||
2005-05-25 | change some printf()'s to cvs_printf() for the server. | Joris Vink | |
okay jfb@ | |||
2005-05-25 | no need to check cvs_trace before outputting a trace, the log code | Jean-Francois Brousseau | |
does it for us | |||
2005-05-25 | check the return value of cvs_startcmd() in cvs_req_command() so we | Jean-Francois Brousseau | |
send the OK response if it went through, instead of grabbing a random value from the stack | |||
2005-05-24 | - create the Entries.Static file with 0644 permissions instead of 0400. | Joris Vink | |
- only add the directory entry to the Entry file when it's not already there. | |||
2005-05-24 | don't fail on mkdir(2) when errno is EEXIST in cvs_file_create(). | Joris Vink | |
2005-05-24 | - simplify cvs_mkadmin(). | Joris Vink | |
- create the correct base paths in checkout. - remove the CVS_CMD_SENDARGS2 flag for checkout, it doesn't need it. okay jfb@ | |||
2005-05-24 | remove debugging stuff | Joris Vink | |
2005-05-24 | cvs_noexec checks; ok joris@ | Xavier Santolaria | |
2005-05-24 | don't try to create directories with mkdir(2) in cvs_resp_sticky(). | Joris Vink | |
it will already be created with cvs_file_create(). fixes the Clear-sticky and Set-sticky responses. | |||
2005-05-24 | as a client, the the Root response first, before trying to ask the version | Joris Vink | |
from our server. This will prevent our server from screwing up in cvs_startcmd(). ok jfb@ | |||
2005-05-24 | remove debugging messages | Jean-Francois Brousseau | |
2005-05-24 | Merge the cvs_cmd and cvs_cmd_info structures and add the necessary | Jean-Francois Brousseau | |
fields to hook local versions of the commands. This needs to go in before it gets any bigger ok joris | |||
2005-05-24 | send the -n flag to the server as part of connection initialization | Jean-Francois Brousseau | |
if it was given on the command-line | |||
2005-05-24 | create the target directory when we receive either of the | Jean-Francois Brousseau | |
{Clear,Set}-{static-directory,sticky} responses ok joris | |||
2005-05-23 | bye bye | Jean-Francois Brousseau | |
2005-05-23 | better formatting. | Joris Vink | |
from the manpage police jmc@ | |||
2005-05-23 | update the CVS_CLIENT_LOG section | Joris Vink | |
ok jfb@ | |||
2005-05-23 | allow the CVS_CLIENT_LOG stuff to take variables which expand | Joris Vink | |
into usefull information to create unique logfile names. okay jfb@ | |||
2005-05-23 | add -n flag to cvs usage | Joris Vink | |
ok jfb@ | |||
2005-05-23 | add some logging for `cvs -t' option use; ok joris@ | Xavier Santolaria | |
2005-05-23 | add -f flag; ok joris@ | Xavier Santolaria | |
2005-05-22 | remove ununsed code | Jean-Francois Brousseau | |
2005-05-22 | unused variable | Joris Vink | |
2005-05-20 | correct wrong error code usage. | Joris Vink | |
ok jfb@, xsa@ | |||
2005-05-20 | cvs_noexec checks; jfb ok | Xavier Santolaria | |