Ignore:
Timestamp:
Oct 16, 2013, 8:02:40 PM (11 years ago)
Author:
Torben Dannhauer
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • projectionDesigner/trunk/projdesigner/main.cpp

    r4 r433  
    2929    for (int i=1; i<argc; ++i)
    3030    {
    31         if (_stricmp(argv[i], "-c") == 0 || _stricmp(argv[i], "-client") == 0)
     31        if (stricmp(argv[i], "-c") == 0 || stricmp(argv[i], "-client") == 0)
    3232            bServer = false;
    33         else if (_stricmp(argv[i], "-address") == 0 && i+1 < argc)
     33        else if (stricmp(argv[i], "-address") == 0 && i+1 < argc)
    3434            address = argv[i+1];
    35         else if ((_stricmp(argv[i], "-port") == 0 || _stricmp(argv[i], "-portno") == 0) && i+1 < argc)
     35        else if ((stricmp(argv[i], "-port") == 0 || stricmp(argv[i], "-portno") == 0) && i+1 < argc)
    3636                {
    3737            portNo = atoi(argv[i+1]);
Note: See TracChangeset for help on using the changeset viewer.