Blame libacl/acl_copy_entry.c

rpm-build 0a0c83
/*
rpm-build 0a0c83
  File: acl_copy_entry.c
rpm-build 0a0c83
rpm-build 0a0c83
  Copyright (C) 1999, 2000
rpm-build 0a0c83
  Andreas Gruenbacher, <a.gruenbacher@bestbits.at>
rpm-build 0a0c83
rpm-build 0a0c83
  This program is free software; you can redistribute it and/or
rpm-build 0a0c83
  modify it under the terms of the GNU Lesser General Public
rpm-build 0a0c83
  License as published by the Free Software Foundation; either
rpm-build 0a0c83
  version 2.1 of the License, or (at your option) any later version.
rpm-build 0a0c83
rpm-build 0a0c83
  This program is distributed in the hope that it will be useful,
rpm-build 0a0c83
  but WITHOUT ANY WARRANTY; without even the implied warranty of
rpm-build 0a0c83
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
rpm-build 0a0c83
  Lesser General Public License for more details.
rpm-build 0a0c83
rpm-build 0a0c83
  You should have received a copy of the GNU Lesser General Public
rpm-build 0a0c83
  License along with this library; if not, write to the Free Software
rpm-build 0a0c83
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
rpm-build 0a0c83
*/
rpm-build 0a0c83
rpm-build 0a0c83
#include "config.h"
rpm-build 0a0c83
#include "libacl.h"
rpm-build 0a0c83
rpm-build 0a0c83
rpm-build 0a0c83
/* 23.4.4 */
rpm-build 0a0c83
int
rpm-build 0a0c83
acl_copy_entry(acl_entry_t dest_d, acl_entry_t src_d)
rpm-build 0a0c83
{
rpm-build 0a0c83
	acl_entry_obj *dest_p = ext2int(acl_entry, dest_d),
rpm-build 0a0c83
	               *src_p = ext2int(acl_entry,  src_d);
rpm-build 0a0c83
	if (!dest_d || !src_p)
rpm-build 0a0c83
		return -1;
rpm-build 0a0c83
rpm-build 0a0c83
	dest_p->etag  = src_p->etag;
rpm-build 0a0c83
	dest_p->eid   = src_p->eid;
rpm-build 0a0c83
	dest_p->eperm = src_p->eperm;
rpm-build 0a0c83
	__acl_reorder_entry_obj_p(dest_p);
rpm-build 0a0c83
	return 0;
rpm-build 0a0c83
}
rpm-build 0a0c83