summaryrefslogtreecommitdiff
path: root/receive-pack.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2005-08-28 23:03:23 -0700
committerLibravatar Junio C Hamano <junkio@cox.net>2005-08-28 23:03:23 -0700
commit8c1f5f0f1f9c36ef5465512753efeff36758ba7d (patch)
treee27706307f48a9e5192f0b6bb873ecadf41dbed5 /receive-pack.c
parentMerge refs/heads/master from . (diff)
parentMerge refs/heads/portable from http://www.cs.berkeley.edu/~ejr/gits/git.git (diff)
downloadtgif-8c1f5f0f1f9c36ef5465512753efeff36758ba7d.tar.xz
Merge refs/heads/master from .
Diffstat (limited to 'receive-pack.c')
-rw-r--r--receive-pack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/receive-pack.c b/receive-pack.c
index 9026f1bf82..1ef0c13935 100644
--- a/receive-pack.c
+++ b/receive-pack.c
@@ -24,7 +24,7 @@ struct command {
unsigned char updated;
unsigned char old_sha1[20];
unsigned char new_sha1[20];
- char ref_name[0];
+ char ref_name[];
};
static struct command *commands = NULL;
@@ -269,7 +269,7 @@ int main(int argc, char **argv)
/* If we have a ".git" directory, chdir to it */
chdir(".git");
- setenv("GIT_DIR", ".", 1);
+ putenv("GIT_DIR=.");
if (access("objects", X_OK) < 0 || access("refs/heads", X_OK) < 0)
die("%s doesn't appear to be a git directory", dir);