Fix timeout max

This commit is contained in:
Joseph C. Lehner 2016-01-30 09:02:37 +02:00
parent cc77b55cfb
commit 6058284b37

2
main.c
View file

@ -70,7 +70,7 @@ int main(int argc, char **argv)
opterr = 0;
while ((c = getopt(argc, argv, "a:f:i:m:M:p:t:T:hV")) != -1) {
max = 0xffffffff;
max = 0x7fffffff;
switch (c) {
case 'a':
args.ipaddr = optarg;