gnokii - Bugs: bug #15031, Cannot read file problem [FIXED]...
You are not allowed to post comments on this tracker with your current authentication level.
bug #15031: Cannot read file problem [FIXED] and file transfer on 6021
Submitter: | None | ||
Submitted: | Tue 22 Nov 2005 04:04:37 AM UTC | ||
Category: | libgnokii | Severity: | 3 - Normal |
Item Group: | None | Status: | None |
Privacy: | Public | Assigned to: | None |
Open/Closed: | Open |
No files currently attached
Depends on the following items: None found
Items that depend on this one: None found
Carbon-Copy List
There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.
Follows 1 latest change.
Date | Changed by | Updated Field | Previous Value | => | Replaced by |
---|---|---|---|---|---|
2007-08-23 | pkot | Category | gnokii | ![]() |
libgnokii |
I found in gnokii.c file [version 0.6.10] putfile function gnokii opens source file as "r" and I can't send a binary file to my phone. So I modify it to "rb" and it finally can read binary file.
Src
f = fopen(nargv[0],"r");
To
f = fopen(nargv[0],"rb");
But although I can send a file and gnokii says it succeed, I can see on my phone only a 0KB file. My phone is 6021 and using 6510 driver and a DKU-5 cable.
I can't delete it, can't modify it, and can't do any operate on this 0KB file. I think gnokii may have some bug in file transfer.