Added in some includes that are required on some systems.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@3489 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2011-08-03 11:31:06 +00:00
parent aa0ee13afa
commit 7a08ab3c24
1 changed files with 3 additions and 4 deletions

View File

@ -23,6 +23,9 @@
#include "zm_user.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
User::User()
{
@ -63,14 +66,10 @@ User::User( MYSQL_ROW &dbrow )
{
monitor_ids[n_monitor_ids++] = id;
if ( !*ptr )
{
break;
}
}
while ( !isdigit( *ptr ) )
{
ptr++;
}
} while( *ptr );
monitor_ids[n_monitor_ids] = 0;
}