Changeset 814aa52 for conf.c


Ignore:
Timestamp:
2010-06-03T11:00:45Z (14 years ago)
Author:
Sven Moritz Hallberg <pesco@…>
Branches:
master
Children:
a6b2f13
Parents:
5f8ab6a9 (diff), f4bcc22 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merge in bitlbee 1.2.6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • conf.c

    r5f8ab6a9 r814aa52  
    8080        }
    8181       
    82         while( argc > 0 && ( opt = getopt( argc, argv, "i:p:P:nvIDFc:d:hR:u:" ) ) >= 0 )
     82        while( argc > 0 && ( opt = getopt( argc, argv, "i:p:P:nvIDFc:d:hR:u:V" ) ) >= 0 )
    8383        /*     ^^^^ Just to make sure we skip this step from the REHASH handler. */
    8484        {
     
    146146                                "  -d  Specify alternative user configuration directory\n"
    147147                                "  -x  Command-line interface to password encryption/hashing\n"
    148                                 "  -h  Show this help page.\n" );
     148                                "  -h  Show this help page.\n"
     149                                "  -V  Show version info.\n" );
     150                        return NULL;
     151                }
     152                else if( opt == 'V' )
     153                {
     154                        printf( "BitlBee %s\nAPI version %06x\n",
     155                                BITLBEE_VERSION, BITLBEE_VERSION_CODE );
    149156                        return NULL;
    150157                }
Note: See TracChangeset for help on using the changeset viewer.