~ampelbein/ubuntu/oneiric/heartbeat/lp-770743

« back to all changes in this revision

Viewing changes to crm/cib/cib.c

  • Committer: Bazaar Package Importer
  • Author(s): Ante Karamatic
  • Date: 2009-08-10 19:29:25 UTC
  • mfrom: (5.2.3 experimental)
  • Revision ID: james.westby@ubuntu.com-20090810192925-9zy2llcbgavbskf7
Tags: 2.99.2+sles11r9-5ubuntu1
* New upstream snapshot
* Adjusted heartbeat.install and rules for documentation path

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* 
2
 
 * Copyright (C) 2004 Andrew Beekhof <andrew@beekhof.net>
3
 
 * 
4
 
 * This program is free software; you can redistribute it and/or
5
 
 * modify it under the terms of the GNU General Public
6
 
 * License as published by the Free Software Foundation; either
7
 
 * version 2.1 of the License, or (at your option) any later version.
8
 
 * 
9
 
 * This software is distributed in the hope that it will be useful,
10
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
 * General Public License for more details.
13
 
 * 
14
 
 * You should have received a copy of the GNU General Public
15
 
 * License along with this library; if not, write to the Free Software
16
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 
 */
18
 
 
19
 
#include <lha_internal.h>
20
 
 
21
 
#include <sys/param.h>
22
 
#include <stdio.h>
23
 
#include <sys/types.h>
24
 
#include <unistd.h>
25
 
 
26
 
#include <stdlib.h>
27
 
#include <errno.h>
28
 
#include <fcntl.h>
29
 
 
30
 
#include <clplumbing/cl_log.h>
31
 
 
32
 
#include <crm/crm.h>
33
 
#include <crm/cib.h>
34
 
#include <crm/msg_xml.h>
35
 
#include <crm/common/xml.h>
36
 
#include <crm/common/msg.h>
37
 
 
38
 
#include <cibio.h>
39
 
#include <cibmessages.h>
40
 
 
41
 
 
42
 
 
43