Subversion Repositories HelenOS

Rev

Rev 4341 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4341 Rev 4348
Line 105... Line 105...
105
        help_cmd_help(HELP_SHORT);
105
        help_cmd_help(HELP_SHORT);
106
        return CMD_FAILURE;
106
        return CMD_FAILURE;
107
    }
107
    }
108
 
108
 
109
    if (argc == 3) {
109
    if (argc == 3) {
110
        if (!strcmp("extended", argv[2]))
110
        if (!str_cmp("extended", argv[2]))
111
            level = HELP_LONG;
111
            level = HELP_LONG;
112
        else
112
        else
113
            level = HELP_SHORT;
113
            level = HELP_SHORT;
114
    }
114
    }
115
 
115