Remove white-space at the beginning of UIDL-string.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1074 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1996-11-25 17:42:51 +00:00
parent f53d807716
commit 32508e9dd1

View File

@@ -28,6 +28,9 @@ find_value_after_colon(char *p)
p++; /* Skip over : */
for(; *p == ' ' || *p == '\t'; p++) /* Remove white space */
;
for (t = p; *t != 0 && *t != '\n' && *t != '\r'; t++) /* Find end of str */
;