summaryrefslogtreecommitdiffstats
path: root/transport.h (unfollow)
Commit message (Expand)AuthorFilesLines
2015-10-05daemon: use cld->env_array when re-spawningJeff King1-16/+10
2015-10-05stat_tracking_info: convert to argv_arrayJeff King1-14/+12
2015-10-05http-push: use an argv_array for setup_revisionsJeff King1-22/+10
2015-10-05fetch-pack: use argv_array for index-pack / unpack-objectsJeff King1-29/+27
2015-10-05diagnose_invalid_index_path: use strbuf to avoid strcpy/strcatJeff King1-12/+9
2015-10-05write_loose_object: convert to strbufJeff King1-20/+22
2015-10-05remove_leading_path: use a strbuf for internal storageJeff King1-4/+6
2015-10-05enter_repo: convert fixed-size buffers to strbufsJeff King1-28/+29
2015-10-05merge-recursive: convert malloc / strcpy to strbufJeff King1-9/+8
2015-10-05transport: use strbufs for status table "quickref" stringsJeff King2-16/+19
2015-10-05apply: convert root string to strbufJeff King1-16/+10
2015-10-05init: use strbufs to store pathsJeff King2-100/+76
2015-10-05probe_utf8_pathname_composition: use internal strbufJeff King4-11/+13
2015-10-05precompose_utf8: drop unused variableJeff King1-2/+1
2015-09-25sha1_get_pack_name: use a strbufJeff King1-29/+10
2015-09-25http-walker: store url in a strbufJeff King1-9/+10
2015-09-25http-push: use strbuf instead of fwrite_bufferJeff King1-16/+5
2015-09-25remote-ext: simplify git pkt-line generationJeff King2-29/+33
2015-09-25upload-archive: convert sprintf to strbufJeff King1-5/+4
2015-09-25resolve_ref: use strbufs for internal buffersJeff King2-27/+59
2015-09-25read_remotes_file: simplify string handlingJeff King1-37/+18
2015-09-25read_branches_file: simplify string handlingJeff King1-34/+20
2015-09-25mailmap: replace strcpy with xstrdupJeff King1-2/+1
2015-09-25help: drop prepend function in favor of xstrfmtJeff King1-12/+2
2015-09-25ref-filter: drop sprintf and strcpy callsJeff King1-48/+22
2015-09-25use strip_suffix and xstrfmt to replace suffixJeff King3-14/+12
2015-09-25fetch: replace static buffer with xstrfmtJeff King1-5/+2
2015-09-25config: use xstrfmt in normalize_valueJeff King1-21/+13
2015-09-25replace trivial malloc + sprintf / strcpy calls with xstrfmtJeff King9-48/+20
2015-09-25receive-pack: convert strncpy to xsnprintfJeff King1-2/+2
2015-09-25http-push: replace strcat with xsnprintfJeff King1-4/+4
2015-09-25add_packed_git: convert strcpy into xsnprintfJeff King2-9/+14
2015-09-25entry.c: convert strcpy to xsnprintfJeff King1-2/+2
2015-09-25grep: use xsnprintf to format failure messageJeff King1-2/+2
2015-09-25compat/hstrerror: convert sprintf to snprintfJeff King1-1/+1
2015-09-25stop_progress_msg: convert sprintf to xsnprintfJeff King1-1/+1
2015-09-25find_short_object_filename: convert sprintf to xsnprintfJeff King1-2/+6
2015-09-25use xsnprintf for generating git object headersJeff King5-12/+13
2015-09-25archive-tar: use xsnprintf for trivial formattingJeff King1-13/+13
2015-09-25convert trivial sprintf / strcpy calls to xsnprintfJeff King20-47/+52
2015-09-25compat/inet_ntop: fix off-by-one in inet_ntop4Jeff King1-3/+3
2015-09-25test-dump-cache-tree: avoid overflow of cache-tree nameJeff King1-1/+1
2015-09-25progress: store throughput display in a strbufJeff King1-10/+8
2015-09-25trace: use strbuf for quote_crnl outputJeff King1-12/+11
2015-09-25mailsplit: make PATH_MAX buffers dynamicJeff King1-11/+23
2015-09-25fsck: use strbuf to generate alternate directoriesJeff King1-5/+6
2015-09-25add reentrant variants of sha1_to_hex and find_unique_abbrevJeff King5-10/+67
2015-09-25strbuf: make strbuf_complete_line more genericJeff King1-2/+13
2015-09-25add git_path_buf helper functionJeff King2-0/+12
2015-09-25add xsnprintf helper functionJeff King2-0/+19