Print this page
1154 cpio needs a quiet option

Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/cpio/cpio.h
          +++ new/usr/src/cmd/cpio/cpio.h
↓ open down ↓ 11 lines elided ↑ open up ↑
  12   12   *
  13   13   * When distributing Covered Code, include this CDDL HEADER in each
  14   14   * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15   15   * If applicable, add the following below this CDDL HEADER, with the
  16   16   * fields enclosed by brackets "[]" replaced with your own identifying
  17   17   * information: Portions Copyright [yyyy] [name of copyright owner]
  18   18   *
  19   19   * CDDL HEADER END
  20   20   */
  21   21  /*
       22 + * Copyright (c) 2012 Gary Mills
       23 + *
  22   24   * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
  23   25   * Use is subject to license terms.
  24   26   */
  25   27  
  26   28  /*      Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
  27   29  /*        All Rights Reserved   */
  28   30  
  29   31  #ifndef _CPIO_H
  30   32  #define _CPIO_H
  31   33  
↓ open down ↓ 30 lines elided ↑ open up ↑
  62   64  #define OCI     0x200000
  63   65  #define OCL     0x400000
  64   66  #define OCM     0x800000
  65   67  #define OCO     0x1000000
  66   68  #define OCR     0x2000000
  67   69  #define OCS     0x4000000
  68   70  #define OCV     0x8000000
  69   71  #define OC6     0x10000000
  70   72  #define BSM     0x20000000
  71   73  #define OCP     0x40000000
       74 +#define OCq     0x80000000
  72   75  
  73   76  /* Sparse file support */
  74   77  #define C_ISSPARSE      0200000
  75   78  #define S_IFSPARSE      0x10000
  76   79  #define HIGH_ORD_MASK   0x30000
  77   80  #define S_ISSPARSE(mode) \
  78   81          (S_ISREG(mode) && (mode & HIGH_ORD_MASK) == S_IFSPARSE)
  79   82  
  80   83  /* Invalid option masks for each action option (-i, -o or -p). */
  81   84  
↓ open down ↓ 257 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX