source: rtems/cpukit/libcsupport/src/chown.c @ 7666afc

4.115
Last change on this file since 7666afc was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 *  chown() - POSIX 1003.1b 5.6.5 - Change Owner and Group of a File
3 *
4 *  COPYRIGHT (c) 1989-1999.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  Modifications to support reference counting in the file system are
8 *  Copyright (c) 2012 embedded brains GmbH.
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.com/license/LICENSE.
13 */
14
15#if HAVE_CONFIG_H
16  #include "config.h"
17#endif
18
19#include <unistd.h>
20
21#include <rtems/libio_.h>
22
23int rtems_filesystem_chown(
24  const char *path,
25  uid_t owner,
26  gid_t group,
27  int eval_follow_link
28)
29{
30  int rv = 0;
31  rtems_filesystem_eval_path_context_t ctx;
32  int eval_flags = eval_follow_link;
33  const rtems_filesystem_location_info_t *currentloc =
34    rtems_filesystem_eval_path_start( &ctx, path, eval_flags );
35
36  rv = (*currentloc->ops->chown_h)(
37    currentloc,
38    owner,
39    group
40  );
41
42  rtems_filesystem_eval_path_cleanup( &ctx );
43
44  return rv;
45}
46
47int chown( const char *path, uid_t owner, gid_t group )
48{
49  return rtems_filesystem_chown( path, owner, group, RTEMS_FS_FOLLOW_LINK );
50}
Note: See TracBrowser for help on using the repository browser.