A bit of a silly one, but maybe other Linux users would this too.
Using Linux in console/ssh all the time, almost everytime now I try to stop q2ded server with 'exit' - grrrr - instead of 'quit'. Gets annoying after a few years.
A small hack:
qcommon/common.c
#ifndef NO_SERVER
if (dedicated->intvalue) {
Cmd_AddCommand ("quit", Com_Quit);
Cmd_AddCommand ("exit", Com_Quit);
}
#endif
Maybe just add an #ifdef Linux around it. I find it handy as hell.
Nick