diff options
| author | Junio C Hamano <junkio@cox.net> | 2006-08-10 23:13:50 -0700 |
|---|---|---|
| committer | Junio C Hamano <junkio@cox.net> | 2006-08-10 23:13:50 -0700 |
| commit | ca9e3b124f6313187da641b5cd55100c4ade6a9a (patch) | |
| tree | 8f574ca26bc402074cc895b8b73aa6a289a3d4da | |
| parent | Add Documentation/howto/setup-git-server-over-http.txt (diff) | |
| parent | http-push: Make WebDAV work with (broken?) default apache2 WebDAV module (diff) | |
| download | git-ca9e3b124f6313187da641b5cd55100c4ade6a9a.tar.gz git-ca9e3b124f6313187da641b5cd55100c4ade6a9a.zip | |
Merge branch 'rn/push-dav'
* rn/push-dav:
http-push: Make WebDAV work with (broken?) default apache2 WebDAV module
| -rw-r--r-- | http-push.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http-push.c b/http-push.c index 4021e7d927..d45733ef64 100644 --- a/http-push.c +++ b/http-push.c @@ -530,7 +530,7 @@ static void start_put(struct transfer_request *request) request->dest = xmalloc(strlen(request->url) + 14); sprintf(request->dest, "Destination: %s", request->url); posn += 38; - *(posn++) = '.'; + *(posn++) = '_'; strcpy(posn, request->lock->token); slot = get_active_slot(); |
