News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

src\appglobals.cpp

Started by sethjackson, March 14, 2006, 09:17:59 PM

Previous topic - Next topic

sethjackson

Is ther a reason that in the operating_system_t enum FreeBSD is oxFreeBSD?

I have a patch that changes it to osFreeBSD.

Code (diff) Select

Index: src/src/appglobals.cpp
===================================================================
--- src/src/appglobals.cpp (revision 2191)
+++ src/src/appglobals.cpp (working copy)
@@ -49,7 +49,7 @@
operating_system_t __cb_get_os()
{
#if defined(__FreeBSD__)
-    return oxFreeBSD;
+    return osFreeBSD;
#elif defined(__UNIX__)
     return osLinux;
#elif defined(__WXMAC__)
Index: src/src/appglobals.h
===================================================================
--- src/src/appglobals.h (revision 2191)
+++ src/src/appglobals.h (working copy)
@@ -28,7 +28,7 @@
osWindows9598ME,
osWindowsNT2000,
osWindowsXP,
-oxFreeBSD,
+osFreeBSD,
osLinux,
osOS2,
osOSX


killerbot

I think this is a typo, I have fixed it accordingly.
Thanks Seth for pointing this out.