Fix two comments
One out-of-date and the other with a typo.
This commit is contained in:
parent
f91ce0b004
commit
f44902aaae
@ -76,7 +76,6 @@ func (be *ContentEnc) CipherBS() uint64 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// DecryptBlocks decrypts a number of blocks
|
// DecryptBlocks decrypts a number of blocks
|
||||||
// TODO refactor to three-param for
|
|
||||||
func (be *ContentEnc) DecryptBlocks(ciphertext []byte, firstBlockNo uint64, fileID []byte) ([]byte, error) {
|
func (be *ContentEnc) DecryptBlocks(ciphertext []byte, firstBlockNo uint64, fileID []byte) ([]byte, error) {
|
||||||
cBuf := bytes.NewBuffer(ciphertext)
|
cBuf := bytes.NewBuffer(ciphertext)
|
||||||
var err error
|
var err error
|
||||||
|
@ -24,7 +24,7 @@ cd "$1"
|
|||||||
# Execute command, discard all stdout output, print elapsed time
|
# Execute command, discard all stdout output, print elapsed time
|
||||||
# (to stderr, unfortunately).
|
# (to stderr, unfortunately).
|
||||||
function etime {
|
function etime {
|
||||||
# Make the bash builtin "time" print out only the elapse wall clock
|
# Make the bash builtin "time" print out only the elapsed wall clock
|
||||||
# seconds
|
# seconds
|
||||||
TIMEFORMAT=%R
|
TIMEFORMAT=%R
|
||||||
time "$@" > /dev/null
|
time "$@" > /dev/null
|
||||||
|
Loading…
Reference in New Issue
Block a user