comparison src/lspst.c @ 59:7d5c637aaafb

General cleanup and code fixes. Use autoscan to cleanup our autoconf system. Use autoconf to detect when we need to use our XGetopt files and other header files. Decode BCC field. Fix missing LE32_CPU byte swapping for FILETIME types.
author Carl Byington <carl@five-ten-sg.com>
date Thu, 14 Feb 2008 14:55:32 -0800
parents 034641c26ab9
children 3cb02cb1e6cd
comparison
equal deleted inserted replaced
58:a8b772313ff4 59:7d5c637aaafb
219 usage(argv[0]); 219 usage(argv[0]);
220 exit(2); 220 exit(2);
221 } 221 }
222 222
223 // Open PST file 223 // Open PST file
224 if (pst_open(&pstfile, argv[optind], "r")) DIE(("Error opening File\n")); 224 if (pst_open(&pstfile, argv[optind])) DIE(("Error opening File\n"));
225 225
226 // Load PST index 226 // Load PST index
227 if (pst_load_index(&pstfile)) DIE(("Index Error\n")); 227 if (pst_load_index(&pstfile)) DIE(("Index Error\n"));
228 228
229 pst_load_extended_attributes(&pstfile); 229 pst_load_extended_attributes(&pstfile);