Mercurial > dropbear
view libtomcrypt/fixupind.pl @ 734:619b1ed837fd
Be a bit more careful about when we want to use CLI_AUTH_IMMEDIATE
Only use it if we have pubkeys to try, or we have $DROPBEAR_PASSWORD set
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 02 Apr 2013 00:11:53 +0800 |
parents | 0cbe8f6dbf9e |
children |
line wrap: on
line source
open(IN,"<crypt.ind"); open(OUT,">crypt.ind.tmp"); $a = <IN>; print OUT "$a\n\\addcontentsline{toc}{chapter}{Index}\n"; while (<IN>) { print OUT $_; } close OUT; close IN; system("mv -f crypt.ind.tmp crypt.ind");