Ticket #1451: patch1.diff

File patch1.diff, 768 bytes (added by tropics, 20 years ago)

patch v1

Line 
1Index: source/Interface/OptionsPasvPage.cpp
2===================================================================
3RCS file: /cvsroot/filezilla/FileZilla Server/source/Interface/OptionsPasvPage.cpp,v
4retrieving revision 1.3
5diff -r1.3 OptionsPasvPage.cpp
6139c139
7< if (nPortMin<1 || nPortMin>65535 || nPortMax<1 || nPortMax>65535 || nPortMin>=nPortMax)
8---
9> if (nPortMin<1 || nPortMin>65535 || nPortMax<1 || nPortMax>65535 || nPortMin>nPortMax)
10143c143
11< AfxMessageBox("The port values have to be in the range from 1 to 65535. Also, the first value has to be lower than the second one.");
12---
13> AfxMessageBox("The port values have to be in the range from 1 to 65535. Also, the first value has to be lower than or equal to the second one.");
14
15