Skip to content

Commit

Permalink
Patched to compile.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Oct 1, 2013
1 parent 1339344 commit 41226f1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions nph-offload.c
Expand Up @@ -125,6 +125,7 @@
#include <netdb.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <utime.h>

#define GVERSION "1.1.6"
#define GSERVERSTRING "nph-offload.c/" GVERSION
Expand Down Expand Up @@ -1568,8 +1569,8 @@ static int serverMainline(int argc, char **argv, char **envp)
{
listFree(&head);
debugEcho("File is cached.");
utimes(GFileDataPath, NULL); // update to latest time so we know what's being requested most.
utimes(GMetaDataPath, NULL); // update to latest time so we know what's being requested most.
utime(GFilePath, NULL); // update to latest time so we know what's being requested most.
utime(GMetaDataPath, NULL); // update to latest time so we know what's being requested most.
} // if

else
Expand Down

0 comments on commit 41226f1

Please sign in to comment.