diff options
Diffstat (limited to 'fs/fat/fat_write.c')
| -rw-r--r-- | fs/fat/fat_write.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/fs/fat/fat_write.c b/fs/fat/fat_write.c index 5829adf1a..4a1bda0a3 100644 --- a/fs/fat/fat_write.c +++ b/fs/fat/fat_write.c @@ -335,7 +335,7 @@ fill_dir_slot(fsdata *mydata, dir_entry **dentptr, const char *l_name)  	/* Get short file name and checksum value */  	strncpy(s_name, (*dentptr)->name, 16); -	checksum = mkcksum(s_name); +	checksum = mkcksum((*dentptr)->name, (*dentptr)->ext);  	do {  		memset(slotptr, 0x00, sizeof(dir_slot)); |