diff options
author | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-03-14 15:01:51 +0000 |
---|---|---|
committer | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-03-14 15:01:51 +0000 |
commit | f6531372757188ad4853eb7d355299317603216f (patch) | |
tree | bebbc53549b185d18352badb52c1efe36ea458b1 /src/main.c | |
parent | ba935451d8eb2e90d334676f06c5bf5c8898a4f0 (diff) |
# BUILD : 1.7.13 (1008) # BUGS : 473 474 # NOTES : gcc switches and win98 stop, thx 2 trystan
git-svn-id: svn://svn.anope.org/anope/trunk@1008 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@733 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index beb488d23..06c4bb550 100644 --- a/src/main.c +++ b/src/main.c @@ -655,6 +655,10 @@ void do_backtrace(int show_segheader) alog("Backtrace: not available on this platform"); #endif #else - alog("Backtrace: not available on this windows"); + char *winver;
+ winver = GetWindowsVersion();
+ alog("Backtrace: not available on Windows");
+ alog("Running %S", winver);
+ free(winver); #endif } |