Fix microissues
This commit is contained in:
parent
27fe6e199d
commit
5245d68453
1 changed files with 6 additions and 6 deletions
|
@ -242,7 +242,7 @@ safe_git_rev_parse()
|
|||
check_recipients()
|
||||
{
|
||||
Recipients="$(gpg --no-default-keyring --keyring "$Conf_keyring" \
|
||||
--with-colons -k | xgrep ^pub | cut -f5 -d: | tr '\n' ' ')"
|
||||
--with-colons -k | xgrep ^pub | cut -f 5 -d ':' | tr '\n' ' ')"
|
||||
# Split recipients by space, example "a b c" => -R a -R b -R c
|
||||
Recipients=$(xecho_n "$Recipients" | sed -e 's/\([^ ]\+\)/-R &/g')
|
||||
if isnull "$Recipients"
|
||||
|
@ -360,7 +360,7 @@ do_list()
|
|||
do_fetch()
|
||||
{
|
||||
# Security protocol:
|
||||
# The PACK id is the SHA-1 of the encrypted git packfile.
|
||||
# The PACK id is the hash of the encrypted git packfile.
|
||||
# We only download packs mentioned in the encrypted manifest,
|
||||
# and check their digest when received.
|
||||
local pack_= rcv_id= packline_= pneed_= pboth_= phave_=
|
||||
|
@ -410,7 +410,7 @@ do_push()
|
|||
# Each git packfile is encrypted and then named for the encrypted
|
||||
# file's hash. The manifest is updated with the pack id.
|
||||
# The manifest is encrypted.
|
||||
local remote_has= remote_want= prefix_= suffix_= line_= new_branch=
|
||||
local remote_has= remote_want= prefix_= suffix_= line_= pack_id=
|
||||
|
||||
ensure_connected
|
||||
check_recipients
|
||||
|
|
Loading…
Reference in a new issue