Changeset 34337a7
- Timestamp:
- 2007-02-18T22:46:21Z (18 years ago)
- Branches:
- master
- Children:
- dcf0f3e
- Parents:
- 0f4c1bb5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
storage_text.c
r0f4c1bb5 r34337a7 98 98 while( fscanf( fp, "%s %d %s", s, &proto, nick ) > 0 ) 99 99 { 100 if( ( acc = acc_lookup[proto] ) == NULL )100 if( proto < 0 || proto > 8 || ( acc = acc_lookup[proto] ) == NULL ) 101 101 continue; 102 102
Note: See TracChangeset
for help on using the changeset viewer.