Commits
- Commit:
b90054ed55f30ebe28115abf5ad9cecc2b925713
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
use mkstemps(3) instead of mkstemp(3) for opening named temporary files
Allows 'got commit' to use a ".diff" suffix for temporary diff files.
ok op@
- Commit:
21017333f16f38ad9e8eb5d478bddf3397d4af05
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
check for unlink(2) errors in got_opentempfd()
ok op@
- Commit:
a558dd1be5714d8e7a83f7d63180550e86ccae5c
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
reuse a temporary file across commits during got log -p -S
suggested by + ok op@
- Commit:
e1e77cc43b61294facdf656a456a4108c13eb638
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
in got_opentempfd() don't attempt to unlink the file if mkstemp(3) failed
- Commit:
bb63914a95fa51c7f5dc16d02b8f4ae2736e2e15
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
make tmp dir location a compile-time setting and change gotweb's tmp dir
We are not sure whether a gotweb package can own /var/www/tmp on OpenBSD.
Moving gotweb's tmp dir to /var/www/got/tmp sidesteps that issue.
- Commit:
0d0c539eac836dab945d11ed77fdd70e27e2ba22
- From:
- joshua stein <jcs@jcs.org>
- Date:
got_opentemp_named: include path in error message
- Commit:
638f9024045bbe2420143f8868dcc484c231c634
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
rename got_error_prefix_errno() to got_error_from_errno()
- Commit:
230a42bdc60c6136d2a5ce65bf1a2f26d990c096
- From:
- joshua stein <jcs@jcs.org>
- Date:
got_error_from_errno -> got_error_prefix_errno
also add got_error_prefix_errno2 and got_error_prefix_errno3 which
should hopefully all be merged into a single function with variadic
args (but can't alloc mem)
- Commit:
507dc3bb1293e483406626bf03199db0bc17dc5c
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add a basic 'got update' command; does not merge files yet
- Commit:
0c92744a7b39f92be3b99012f3d7d0ebf0c428fb
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
initialize *outfile in got_opentemp_named()
- Commit:
511a516b74d9f5e498a5dc2de97b0e488df51088
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
move got_opentmp* functions to public API; used from tog