[PATCH] Fix git-init-db creating crap directories.
commit1f961c196cbb475e612a4fb082b33efde71e7a03
authorPetr Baudis <pasky@suse.cz>
Tue, 20 Sep 2005 00:19:50 +0000 (20 02:19 +0200)
committerJunio C Hamano <junkio@cox.net>
Tue, 20 Sep 2005 00:41:13 +0000 (19 17:41 -0700)
treeb1fe84edf1de96c7c82574586b9e9d774d81d065
parentbfb73b2ebc2d50c8e14133ad15137604fc54563d
[PATCH] Fix git-init-db creating crap directories.

The base target directory for the templates copying was initialized
to git_dir, but git_dir[len] is not zero but / at the time we do the
initialization. This is not what we want for our target directory string
since we pass it to mkdir(), so make it zero-terminated manually.

Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
init-db.c