Changeset 6660 for trunk/tools/database/StateUpd.cpp
- Timestamp:
- Sep 6, 2001, 1:14:12 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/database/StateUpd.cpp
r6651 r6660 1 /* $Id: StateUpd.cpp,v 1.3 4 2001-09-05 13:59:03bird Exp $1 /* $Id: StateUpd.cpp,v 1.35 2001-09-05 23:14:12 bird Exp $ 2 2 * 3 3 * StateUpd - Scans source files for API functions and imports data on them. … … 688 688 */ 689 689 iRet = i; 690 while (i < iRet + 10 && (psz = strstr(papszLines[i], "$Id"": ")) == NULL)690 while (i < iRet + 10 && (psz = papszLines[i]) != NULL && (psz = strstr(psz, "$Id"": ")) == NULL) /* check for end-of-file */ 691 691 i++; 692 692 if (psz != NULL)
Note:
See TracChangeset
for help on using the changeset viewer.