Changeset 2129 for libswish3/trunk/src/xapian
- Timestamp:
- 04/15/08 10:29:48 (6 months ago)
- Files:
-
- libswish3/trunk/src/xapian/swish_xapian.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
libswish3/trunk/src/xapian/swish_xapian.cpp
r2112 r2129 622 622 err(1, "-d option requires a positive integer as argument\n"); 623 623 624 SWISH_DEBUG = (int)strtol(optarg, (char **)NULL, 10);624 SWISH_DEBUG = swish_string_to_int(optarg); 625 625 break; 626 626 … … 634 634 635 635 case 's': 636 skip_duplicates = (int)strtol(optarg, (char **)NULL, 10);636 skip_duplicates = swish_string_to_int(optarg); 637 637 break; 638 638
