SorryïIt is my wrong ! It is not a bug ! On Wed, May 11, 2011 at 10:21, Robert <yayooo@xxxxxxxxx> wrote: > Even a authenticated Âuser can not push when http.receivepack set to false. > when > git config http.receivepack false > svc->enabled was set to 0 not -1 > so we should initialize with 0 not -1 > > --- http-backend.c   ÂThu May Â5 01:16:14 2011 > +++ http-backend.c  Wed May 11 09:57:52 2011 > @@ -23,7 +23,7 @@ > > Âstatic struct rpc_service rpc_service[] = { >    Â{ "upload-pack", "uploadpack", 1 }, > -    { "receive-pack", "receivepack", -1 }, > +    { "receive-pack", "receivepack", 0 }, > Â}; > > Âstatic struct string_list *get_parameters(void) > @@ -260,8 +260,8 @@ >    Âif (!svc) >        Âforbidden("Unsupported service: '%s'", name); > > -    if (svc->enabled < 0) { >        Âconst char *user = getenv("REMOTE_USER"); > +    if (!svc->enabled) { >        Âsvc->enabled = (user && *user) ? 1 : 0; >    Â} >    Âif (!svc->enabled) > -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html