Assorted spelling fixes.
This commit is contained in:
parent
58c77f6156
commit
906127fe29
|
@ -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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 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)
|
||||||
*
|
*
|
||||||
* 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
|
||||||
/* 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 */
|
||||||
|
|
Loading…
Reference in New Issue