Changeset - bd41430e9025
[Not reviewed]
default
0 1 0
LordOfWar - 16 years ago 2009-11-11 20:36:25

added more includes to user_mgr so it can build properly ^^
1 file changed with 3 insertions and 0 deletions:
0 comments (0 inline, 0 general)
src/server/user_mgr.c
Show inline comments
 
@@ -11,24 +11,27 @@
 
  DistRen is distributed in the hope that it will be useful,
 
  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  GNU Affero General Public License for more details.
 

	
 
  You should have received a copy of the GNU Affero General Public License
 
  along with DistRen.  If not, see <http://www.gnu.org/licenses/>.
 
*/
 

	
 
#include "user_mgr.h"
 
#include "malloc.h"
 
#include <string.h>
 
#include <stdio.h>
 
#include <stdlib.h>
 
#include <unistd.h>
 

	
 
struct user_mgr_info
 
{
 
	struct user *user_array;
 
	int current_users;
 
	int user_array_size;
 
} user_mgr_info;
 

	
 
int resize_user_array()
 
{
 
	int counter;
 
	int counter2;
0 comments (0 inline, 0 general)