Merge branch 'gh/cvsimport-user'

* gh/cvsimport-user:
  git-cvsimport: fix handling of user name when it is not set in CVSROOT
This commit is contained in:
Junio C Hamano 2007-11-14 14:03:27 -08:00
Родитель 93cbbd7121 2e458e0575
Коммит e318f60723
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -223,7 +223,8 @@ sub conn {
}
}
$user="anonymous" unless defined $user;
# if username is not explicit in CVSROOT, then use current user, as cvs would
$user=(getlogin() || $ENV{'LOGNAME'} || $ENV{'USER'} || "anonymous") unless $user;
my $rr2 = "-";
unless ($port) {
$rr2 = ":pserver:$user\@$serv:$repo";