Changeset 3961:db442ac20742 in roaraudio


Ignore:
Timestamp:
06/25/10 17:53:53 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

updated help

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roarclients/roarctl.c

    r3960 r3961  
    5959        "  --help                  - Show this help\n" 
    6060        "  --verbose   -v          - Show verbose output\n" 
     61        "  --list-aiprofiles       - Show audio info profiles and exit\n" 
    6162       ); 
    6263 
     
    6970#endif 
    7071        "  whoami                  - Get own client ID\n" 
     72        "\n" 
     73        "  listaiprofiles          - list audio info profiles\n" 
     74        "  aiprofileget PROFILE    - show audio info profile PROFILE\n" 
    7175        "\n" 
    7276        "  standby, off            - Go into standby mode\n" 
     
    11201124 
    11211125 
    1122   } else if ( !strcmp(k, "listprofiles") ) { 
     1126  } else if ( !strcmp(k, "listaiprofiles") || !strcmp(k, "listprofiles") ) { 
    11231127   if ( list_aiprofiles() == -1 ) { 
    11241128    fprintf(stderr, "Error: can not list profiles\n"); 
    11251129   } 
    1126   } else if ( !strcmp(k, "profileget") ) { 
     1130  } else if ( !strcmp(k, "aiprofileget") || !strcmp(k, "profileget") ) { 
    11271131   i++; 
    11281132   if ( show_aiprofile(argv[i]) == -1 ) { 
Note: See TracChangeset for help on using the changeset viewer.