comparison src/lspst.c @ 390:5c0ce43c7532

Fix a number of spelling mistakes Changes-by: codespell -w Suggested-by: codespell, spellintian, lintian I: libpst4: spelling-error-in-binary usr/lib/x86_64-linux-gnu/libpst.so.4.1.14 occured occurred I: libpst-dev: spelling-error-in-manpage usr/share/man/man5/outlook.pst.5.gz Attachement Attachment
author Paul Wise <pabs3@bonedaddy.net>
date Sat, 21 Dec 2019 21:25:45 +0800
parents ad7b880ad3d1
children
comparison
equal deleted inserted replaced
389:3f83feface7a 390:5c0ce43c7532
1 /*** 1 /***
2 * lspst.c 2 * lspst.c
3 * Part of the LibPST project 3 * Part of the LibPST project
4 * Author: Joe Nahmias <joe@nahmias.net> 4 * Author: Joe Nahmias <joe@nahmias.net>
5 * Based on readpst.c by by David Smith <dave.s@earthcorp.com> 5 * Based on readpst.c by David Smith <dave.s@earthcorp.com>
6 * 6 *
7 */ 7 */
8 8
9 #include "define.h" 9 #include "define.h"
10 10
294 DEBUG_RET(); 294 DEBUG_RET();
295 return 0; 295 return 0;
296 } 296 }
297 297
298 298
299 // This function will make sure that a filename is in cannonical form. That 299 // This function will make sure that a filename is in canonical form. That
300 // is, it will replace any slashes, backslashes, or colons with underscores. 300 // is, it will replace any slashes, backslashes, or colons with underscores.
301 void canonicalize_filename(char *fname) { 301 void canonicalize_filename(char *fname) {
302 DEBUG_ENT("canonicalize_filename"); 302 DEBUG_ENT("canonicalize_filename");
303 if (fname == NULL) { 303 if (fname == NULL) {
304 DEBUG_RET(); 304 DEBUG_RET();