Commit 906127fe authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Assorted spelling fixes.

parent 58c77f61
...@@ -996,7 +996,7 @@ static void test_lpFile_parsed(void) ...@@ -996,7 +996,7 @@ static void test_lpFile_parsed(void)
rc > 32 ? "success" : "failure", rc, fileA rc > 32 ? "success" : "failure", rc, fileA
); );
/* quoted lpFile not works only on real win95 and nt4 */ /* quoted lpFile does not work on real win95 and nt4 */
testfile = "\"%%TEMP%%\\%s\\simple.shlexec\""; testfile = "\"%%TEMP%%\\%s\\simple.shlexec\"";
sprintf(fileA, testfile, shorttmpdir); sprintf(fileA, testfile, shorttmpdir);
rc=shell_execute_ex(SEE_MASK_DOENVSUBST | SEE_MASK_FLAG_NO_UI, NULL, fileA, NULL, NULL); rc=shell_execute_ex(SEE_MASK_DOENVSUBST | SEE_MASK_FLAG_NO_UI, NULL, fileA, NULL, NULL);
......
...@@ -2351,7 +2351,7 @@ static void handle_full_cache(void) ...@@ -2351,7 +2351,7 @@ static void handle_full_cache(void)
} }
} }
/* Enumerates entires in cache, allows cache unlocking between calls. */ /* Enumerates entries in cache, allows cache unlocking between calls. */
static BOOL urlcache_next_entry(URLCACHE_HEADER *header, DWORD *hash_table_off, DWORD *hash_table_entry, static BOOL urlcache_next_entry(URLCACHE_HEADER *header, DWORD *hash_table_off, DWORD *hash_table_entry,
struct _HASH_ENTRY **hash_entry, CACHEFILE_ENTRY **entry) struct _HASH_ENTRY **hash_entry, CACHEFILE_ENTRY **entry)
{ {
...@@ -2456,7 +2456,7 @@ static int dword_cmp(const void *p1, const void *p2) ...@@ -2456,7 +2456,7 @@ static int dword_cmp(const void *p1, const void *p2)
* *
* PARAMETERS * PARAMETERS
* cache_path [I] Which volume to free up from, or NULL if you don't care. * cache_path [I] Which volume to free up from, or NULL if you don't care.
* size [I] How much percent of cache space should be free. * size [I] How many percents of the cache should be free.
* filter [I] Which entries can't be deleted (CacheEntryType) * filter [I] Which entries can't be deleted (CacheEntryType)
* *
* RETURNS * RETURNS
......
...@@ -1820,7 +1820,7 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_LIST **output, HANDLE ...@@ -1820,7 +1820,7 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_LIST **output, HANDLE
/* Replace env vars if in a batch context */ /* Replace env vars if in a batch context */
if (context) handleExpansion(extraSpace, FALSE, NULL, NULL); if (context) handleExpansion(extraSpace, FALSE, NULL, NULL);
/* Skip preceeding whitespace */ /* Skip preceding whitespace */
while (*curPos == ' ' || *curPos == '\t') curPos++; while (*curPos == ' ' || *curPos == '\t') curPos++;
/* Show prompt before batch line IF echo is on and in batch program */ /* Show prompt before batch line IF echo is on and in batch program */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment