[BACK]Return to client.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / cvs

Diff for /src/usr.bin/cvs/client.c between version 1.65 and 1.66

version 1.65, 2007/06/27 03:58:16 version 1.66, 2007/06/27 20:42:19
Line 37 
Line 37 
         { "Valid-responses",    1,      cvs_server_validresp, REQ_NEEDED },          { "Valid-responses",    1,      cvs_server_validresp, REQ_NEEDED },
         { "valid-requests",     1,      cvs_server_validreq, REQ_NEEDED },          { "valid-requests",     1,      cvs_server_validreq, REQ_NEEDED },
         { "Directory",          0,      cvs_server_directory, REQ_NEEDED },          { "Directory",          0,      cvs_server_directory, REQ_NEEDED },
         { "Static-directory",   0,      cvs_server_static_directory, REQ_NEEDED },          { "Static-directory",   0,      cvs_server_static_directory,
         { "Sticky",             0,      cvs_server_sticky, REQ_NEEDED },              REQ_NEEDED | REQ_NEEDDIR },
         { "Entry",              0,      cvs_server_entry, REQ_NEEDED },          { "Sticky",             0,      cvs_server_sticky,
         { "Modified",           0,      cvs_server_modified, REQ_NEEDED },              REQ_NEEDED | REQ_NEEDDIR },
           { "Entry",              0,      cvs_server_entry,
               REQ_NEEDED | REQ_NEEDDIR },
           { "Modified",           0,      cvs_server_modified,
               REQ_NEEDED | REQ_NEEDDIR },
         { "UseUnchanged",       0,      cvs_server_useunchanged, REQ_NEEDED },          { "UseUnchanged",       0,      cvs_server_useunchanged, REQ_NEEDED },
         { "Unchanged",          0,      cvs_server_unchanged, REQ_NEEDED },          { "Unchanged",          0,      cvs_server_unchanged,
               REQ_NEEDED | REQ_NEEDDIR },
         { "Questionable",       0,      cvs_server_questionable, REQ_NEEDED },          { "Questionable",       0,      cvs_server_questionable, REQ_NEEDED },
         { "Argument",           0,      cvs_server_argument, REQ_NEEDED },          { "Argument",           0,      cvs_server_argument, REQ_NEEDED },
         { "Argumentx",          0,      cvs_server_argumentx, REQ_NEEDED },          { "Argumentx",          0,      cvs_server_argumentx, REQ_NEEDED },
Line 69 
Line 74 
         { "expand-modules",             0,      NULL, 0 },          { "expand-modules",             0,      NULL, 0 },
   
         /* commands that might be supported */          /* commands that might be supported */
         { "ci",                         0,      cvs_server_commit, 0 },          { "ci",                         0,      cvs_server_commit,
         { "co",                         0,      cvs_server_checkout, 0 },              REQ_NEEDDIR },
         { "update",                     0,      cvs_server_update, 0 },          { "co",                         0,      cvs_server_checkout,
         { "diff",                       0,      cvs_server_diff, 0 },              REQ_NEEDDIR },
         { "log",                        0,      cvs_server_log, 0 },          { "update",                     0,      cvs_server_update,
         { "rlog",                       0,      cvs_server_rlog, 0 },              REQ_NEEDDIR },
         { "add",                        0,      cvs_server_add, 0 },          { "diff",                       0,      cvs_server_diff, REQ_NEEDDIR },
         { "remove",                     0,      cvs_server_remove, 0 },          { "log",                        0,      cvs_server_log, REQ_NEEDDIR },
           { "rlog",                       0,      cvs_server_rlog, REQ_NEEDDIR },
           { "add",                        0,      cvs_server_add, REQ_NEEDDIR },
           { "remove",                     0,      cvs_server_remove,
               REQ_NEEDDIR },
         { "update-patches",             0,      cvs_server_update_patches, 0 },          { "update-patches",             0,      cvs_server_update_patches, 0 },
         { "gzip-file-contents",         0,      NULL, 0 },          { "gzip-file-contents",         0,      NULL, 0 },
         { "status",                     0,      cvs_server_status, 0 },          { "status",                     0,      cvs_server_status,
               REQ_NEEDDIR },
         { "rdiff",                      0,      NULL, 0 },          { "rdiff",                      0,      NULL, 0 },
         { "tag",                        0,      cvs_server_tag, 0 },          { "tag",                        0,      cvs_server_tag, REQ_NEEDDIR },
         { "rtag",                       0,      NULL, 0 },          { "rtag",                       0,      NULL, 0 },
         { "import",                     0,      cvs_server_import, 0 },          { "import",                     0,      cvs_server_import,
         { "admin",                      0,      cvs_server_admin, 0 },              REQ_NEEDDIR },
           { "admin",                      0,      cvs_server_admin, REQ_NEEDDIR },
         { "export",                     0,      NULL, 0 },          { "export",                     0,      NULL, 0 },
         { "history",                    0,      NULL, 0 },          { "history",                    0,      NULL, 0 },
         { "release",                    0,      NULL, 0 },          { "release",                    0,      NULL, 0 },
Line 94 
Line 105 
         { "watch-remove",               0,      NULL, 0 },          { "watch-remove",               0,      NULL, 0 },
         { "watchers",                   0,      NULL, 0 },          { "watchers",                   0,      NULL, 0 },
         { "editors",                    0,      NULL, 0 },          { "editors",                    0,      NULL, 0 },
         { "init",                       0,      cvs_server_init, 0 },          { "init",                       0,      cvs_server_init, REQ_NEEDDIR },
         { "annotate",                   0,      cvs_server_annotate, 0 },          { "annotate",                   0,      cvs_server_annotate,
               REQ_NEEDDIR },
         { "rannotate",                  0,      NULL, 0 },          { "rannotate",                  0,      NULL, 0 },
         { "noop",                       0,      NULL, 0 },          { "noop",                       0,      NULL, 0 },
         { "version",                    0,      cvs_server_version, 0 },          { "version",                    0,      cvs_server_version, 0 },

Legend:
Removed from v.1.65  
changed lines
  Added in v.1.66