Deleted Added
full compact
blame.c (251886) blame.c (253734)
1/*
2 * blame.c : entry point for blame RA functions for ra_serf
3 *
4 * ====================================================================
5 * Licensed to the Apache Software Foundation (ASF) under one
6 * or more contributor license agreements. See the NOTICE file
7 * distributed with this work for additional information
8 * regarding copyright ownership. The ASF licenses this file

--- 352 unchanged lines hidden (view full) ---

361 handler->body_delegate = create_file_revs_body;
362 handler->body_delegate_baton = blame_ctx;
363 handler->conn = session->conns[0];
364 handler->session = session;
365
366 err = svn_ra_serf__context_run_one(handler, pool);
367
368 err = svn_error_compose_create(
1/*
2 * blame.c : entry point for blame RA functions for ra_serf
3 *
4 * ====================================================================
5 * Licensed to the Apache Software Foundation (ASF) under one
6 * or more contributor license agreements. See the NOTICE file
7 * distributed with this work for additional information
8 * regarding copyright ownership. The ASF licenses this file

--- 352 unchanged lines hidden (view full) ---

361 handler->body_delegate = create_file_revs_body;
362 handler->body_delegate_baton = blame_ctx;
363 handler->conn = session->conns[0];
364 handler->session = session;
365
366 err = svn_ra_serf__context_run_one(handler, pool);
367
368 err = svn_error_compose_create(
369 svn_ra_serf__error_on_status(handler->sline.code,
369 svn_ra_serf__error_on_status(handler->sline,
370 handler->path,
371 handler->location),
372 err);
373
374 return svn_error_trace(err);
375}
370 handler->path,
371 handler->location),
372 err);
373
374 return svn_error_trace(err);
375}