diff options
author | Adam <Adam@anope.org> | 2011-03-30 00:55:45 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-03-30 00:55:45 -0400 |
commit | 8098ed899a3648897c0de925c974e21883a76b8d (patch) | |
tree | b46ae9bc84943be1a73ebbb56502250f6afe0de6 /src/logger.cpp | |
parent | 77c98f0750da20bc565eb33b9a9d7bbbd1535006 (diff) |
Fixed windows build more, including ldap
Diffstat (limited to 'src/logger.cpp')
-rw-r--r-- | src/logger.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/logger.cpp b/src/logger.cpp index 1265dc3e2..a74a219d9 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -52,7 +52,6 @@ static Anope::string GetTimeStamp() if (time(&t) < 0) throw CoreException("time() failed"); tm tm = *localtime(&t); -#if HAVE_GETTIMEOFDAY if (debug) { char *s; @@ -64,7 +63,6 @@ static Anope::string GetTimeStamp() strftime(s, sizeof(tbuf) - (s - tbuf) - 1, " %Y]", &tm); } else -#endif strftime(tbuf, sizeof(tbuf) - 1, "[%b %d %H:%M:%S %Y]", &tm); return tbuf; |