ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/c_misc.C
(Generate patch)

Comparing deliantra/server/server/c_misc.C (file contents):
Revision 1.65 by root, Thu Nov 8 19:43:26 2007 UTC vs.
Revision 1.66 by root, Sun Apr 20 06:20:38 2008 UTC

31command_motd (object *op, char *params) 31command_motd (object *op, char *params)
32{ 32{
33 display_motd (op); 33 display_motd (op);
34 return 1; 34 return 1;
35} 35}
36
37#ifdef DEBUG_MALLOC_LEVEL
38int
39command_malloc_verify (object *op, char *parms)
40{
41 extern int malloc_verify (void);
42
43 if (!malloc_verify ())
44 new_draw_info (NDI_UNIQUE, 0, op, "Heap is corrupted.");
45 else
46 new_draw_info (NDI_UNIQUE, 0, op, "Heap checks out OK.");
47 return 1;
48}
49#endif
50 36
51typedef struct 37typedef struct
52{ 38{
53 char namebuf[MAX_BUF]; 39 char namebuf[MAX_BUF];
54 int login_order; 40 int login_order;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines