File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
- VERSION =1.0
1
+ VERSION =1.1
2
2
ARCHIVE =minsk-$(VERSION ) .tar.gz
3
3
4
4
CC =gcc
@@ -8,15 +8,15 @@ CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -W
8
8
all : minsk
9
9
10
10
web : minsk
11
- rsync -avzP . jw:www/minsk/ --exclude=.git --exclude=.* .swp --delete
11
+ rsync -avzP . jw:www/ext/ minsk/ --exclude=.git --exclude=.* .swp --delete
12
12
13
13
release :
14
14
git tag v$(VERSION )
15
15
git push --tags
16
16
git archive --format=tar --prefix=minsk-$(VERSION ) / HEAD | gzip > $(ARCHIVE )
17
- scp $(ARCHIVE ) atrey :~ ftp/pub/local /mj/minsk/
18
- ssh jw " cd www && bin/release-prog minsk $( VERSION) "
19
- mv $(ARCHIVE ) ~ /archives/mj /
17
+ scp $(ARCHIVE ) jw :~ ftp/pub/mj/minsk/
18
+ ssh jw " cd web && bin/release-prog minsk $( VERSION) "
19
+ mv $(ARCHIVE ) ~ /archives/sw/minsk /
20
20
21
21
clean :
22
22
rm -f ` find . -name " *~" -or -name " *.[oa]" -or -name core -or -name .depend -or -name .# *`
Original file line number Diff line number Diff line change 3
3
use strict;
4
4
use warnings;
5
5
6
- use lib ' ../lib' ;
6
+ use lib ' ../../ lib/perl ' ;
7
7
use UCW::CGI;
8
8
use File::Temp;
9
9
use POSIX;
74
74
75
75
print <<EOF ;
76
76
<hr>
77
- <p>Written by <a href='http://mj.ucw.cz/'>Martin Mareš</a>. Version 1.0 (2010-12-27 ).
77
+ <p>Written by <a href='http://mj.ucw.cz/'>Martin Mareš</a> and Rutger van Bergen . Version 1.1 (2022-04-24 ).
78
78
</body></html>
79
79
EOF
Original file line number Diff line number Diff line change @@ -1284,7 +1284,7 @@ static void init_memory(int set_password)
1284
1284
// not +00 00 0000 0000 (NOP). Otherwise, an empty program would reveal
1285
1285
// the location of the password :)
1286
1286
for (int i = 0 ; i < memblocks ; i ++ )
1287
- for (int j = 0 ; i < MEM_SIZE ; j ++ )
1287
+ for (int j = 0 ; j < MEM_SIZE ; j ++ )
1288
1288
mem [i ][j ] = 01000000000000ULL ;
1289
1289
1290
1290
// Store the password
You can’t perform that action at this time.
0 commit comments