Print this page


Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/zonecfg/zonecfg_lex.l
          +++ new/usr/src/cmd/zonecfg/zonecfg_lex.l
↓ open down ↓ 14 lines elided ↑ open up ↑
  15   15   * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  16   16   * If applicable, add the following below this CDDL HEADER, with the
  17   17   * fields enclosed by brackets "[]" replaced with your own identifying
  18   18   * information: Portions Copyright [yyyy] [name of copyright owner]
  19   19   *
  20   20   * CDDL HEADER END
  21   21   */
  22   22  
  23   23  /*
  24   24   * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
  25      - * Copyright (c) 2011, Joyent Inc. All rights reserved.
  26   25   */
  27   26  
  28   27  #include <assert.h>
  29   28  #include <string.h>
  30   29  #include <libintl.h>
  31   30  #include "zonecfg.h"
  32   31  #include "zonecfg_grammar.tab.h"
  33   32  
  34   33  /*
  35   34   * This constant defines the number of entries added to unclaimed_tokens[]
↓ open down ↓ 279 lines elided ↑ open up ↑
 315  314  
 316  315  <TSTATE>user    { return USER; }
 317  316  <CSTATE>user    { return USER; }
 318  317  
 319  318  <TSTATE>auths   { return AUTHS; }
 320  319  <CSTATE>auths   { return AUTHS; }
 321  320  
 322  321  <TSTATE>fs-allowed      { return FS_ALLOWED; }
 323  322  <CSTATE>fs-allowed      { return FS_ALLOWED; }
 324  323  
 325      -<TSTATE>uuid    { return UUID; }
 326      -<CSTATE>uuid    { return UUID; }
 327      -
 328      -<TSTATE>zfs-io-priority { return ZFSPRI; }
 329      -<CSTATE>zfs-io-priority { return ZFSPRI; }
 330      -
 331  324  <TSTATE>=       { return EQUAL; }
 332  325  <LSTATE>=       { return EQUAL; }
 333  326  <CSTATE>=       { return EQUAL; }
 334  327  
 335  328  <TSTATE>"["     {
 336  329                          BEGIN LSTATE;
 337  330                          state = LSTATE;
 338  331                          return OPEN_SQ_BRACKET;
 339  332                  }
 340  333  
↓ open down ↓ 220 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX