mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-10 18:23:28 +00:00
Changed search for '\r' to '\n' in determination of reply line length
SVN revision: 605
This commit is contained in:
parent
84642a87e8
commit
76ad0a1207
@ -6,6 +6,9 @@
|
|||||||
Contents: Web server program for Electronic Logbook ELOG
|
Contents: Web server program for Electronic Logbook ELOG
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.143 2003/09/05 15:16:21 midas
|
||||||
|
Changed search for '\r' to '\n' in determination of reply line length
|
||||||
|
|
||||||
Revision 1.142 2003/07/29 20:25:47 midas
|
Revision 1.142 2003/07/29 20:25:47 midas
|
||||||
Fixed display of text attachments
|
Fixed display of text attachments
|
||||||
|
|
||||||
@ -6324,7 +6327,7 @@ char fl[8][NAME_LENGTH];
|
|||||||
p = text;
|
p = text;
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
pend = strchr(p, '\r');
|
pend = strchr(p, '\n');
|
||||||
if (pend == NULL)
|
if (pend == NULL)
|
||||||
pend = p+strlen(p);
|
pend = p+strlen(p);
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user