Fix two comments

One out-of-date and the other with a typo.
This commit is contained in:
Jakob Unterwurzacher 2017-06-01 18:53:57 +02:00
parent f91ce0b004
commit f44902aaae
2 changed files with 1 additions and 2 deletions

View File

@ -76,7 +76,6 @@ func (be *ContentEnc) CipherBS() uint64 {
}
// DecryptBlocks decrypts a number of blocks
// TODO refactor to three-param for
func (be *ContentEnc) DecryptBlocks(ciphertext []byte, firstBlockNo uint64, fileID []byte) ([]byte, error) {
cBuf := bytes.NewBuffer(ciphertext)
var err error

View File

@ -24,7 +24,7 @@ cd "$1"
# Execute command, discard all stdout output, print elapsed time
# (to stderr, unfortunately).
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
TIMEFORMAT=%R
time "$@" > /dev/null