Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e27f590

Browse files
committed
Fixes #1838
1 parent 7afe655 commit e27f590

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

extra/icmpsh/icmpsh-s.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ void usage(char *path)
9999
printf(" -h this screen\n");
100100
printf(" -b num maximal number of blanks (unanswered icmp requests)\n");
101101
printf(" before quitting\n");
102-
printf(" -s bytes maximal data buffer size in bytes (default is 64 bytes)\n\n", DEFAULT_MAX_DATA_SIZE);
102+
printf(" -s bytes maximal data buffer size in bytes (default is %u bytes)\n\n", DEFAULT_MAX_DATA_SIZE);
103103
printf("In order to improve the speed, lower the delay (-d) between requests or\n");
104104
printf("increase the size (-s) of the data buffer\n");
105105
}

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.5.8"
22+
VERSION = "1.0.5.9"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

0 commit comments

Comments
 (0)