mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00:00
- Fixed the type of the result from open and replace fclose with close.
- Call time with a parameter (WIN32). svn path=/trunk/; revision=4820
This commit is contained in:
@@ -42,7 +42,7 @@ char* convert_path(char* origpath)
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
char* path;
|
||||
FILE* file;
|
||||
int id;
|
||||
#ifdef WIN32
|
||||
time_t now;
|
||||
struct utimbuf fnow;
|
||||
@@ -55,21 +55,21 @@ int main(int argc, char* argv[])
|
||||
}
|
||||
|
||||
path = convert_path(argv[1]);
|
||||
file = (FILE *)open(path, S_IWRITE);
|
||||
if (file == (void*)-1)
|
||||
id = open(path, S_IWRITE);
|
||||
if (id < 0)
|
||||
{
|
||||
file = (FILE *)open(path, S_IWRITE | O_CREAT);
|
||||
if (file == (void*)-1)
|
||||
id = open(path, S_IWRITE | O_CREAT);
|
||||
if (id < 0)
|
||||
{
|
||||
fprintf(stderr, "Cannot create file.\n");
|
||||
exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
fclose(file);
|
||||
close(id);
|
||||
|
||||
#ifdef WIN32
|
||||
now = time();
|
||||
now = time(NULL);
|
||||
fnow.actime = now;
|
||||
fnow.modtime = now;
|
||||
(int) utime(path, &fnow);
|
||||
|
||||
Reference in New Issue
Block a user