Pep - 2011-02-22

Hi there,

Just tried installing this on CentOS, and there's one issue in the main() function with the arguments that are being passed.
Error when trying to checkout a module: Password for xx not found!

At line 1076 and 1077:
server = argv;
username = argv;

However, on my CentOS installation these arguments are not correct, the arguments being passed are:
Arg 0: ccvssh
Arg 1: -l
Arg 2: username
Arg 3: server
So in order to make it work lines 1076 and 1077 should be:
server = argv;
username = argv;

Nice tool, though.

Cheers,
Pep