Changeset 47
- Timestamp:
- 08/06/05 10:58:19 (19 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/reglookup.1.t2t
r45 r47 29 29 RSRC_LIST,RSRC_DESC,RSRC_REQ_LIST,KEY 30 30 31 -h Enables the printing of a column header row. (default) 32 33 -H Disables the printing of a column header row. 34 31 35 -s Adds four additional columns to output containing 32 36 information from key security descriptors. The columns … … 35 39 36 40 -S Disables the printing of security descriptor 37 information. 41 information. (default) 38 42 39 43 -v Verbose output. -
trunk/src/reglookup.c
r46 r47 783 783 fprintf(stderr, "Options:\n"); 784 784 fprintf(stderr, "\t-v\t sets verbose mode.\n"); 785 fprintf(stderr, "\t-h\t enables header row. (default)\n"); 786 fprintf(stderr, "\t-H\t disables header row.\n"); 785 787 fprintf(stderr, "\t-s\t enables security descriptor output.\n"); 786 788 fprintf(stderr, "\t-S\t disables security descriptor output. (default)\n"); … … 837 839 type_filter_enabled = true; 838 840 } 841 else if (strcmp("-h", argv[argi]) == 0) 842 print_header = true; 843 else if (strcmp("-H", argv[argi]) == 0) 844 print_header = false; 839 845 else if (strcmp("-s", argv[argi]) == 0) 840 846 print_security = true;
Note: See TracChangeset
for help on using the changeset viewer.