Subversion Repositories SvarDOS

Rev

Rev 421 | Rev 437 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 421 Rev 426
Line 92... Line 92...
92
  for (i = 1; i < argc; i++) {
92
  for (i = 1; i < argc; i++) {
93
    if (strcmp(argv[i], "/locate") == 0) {
93
    if (strcmp(argv[i], "/locate") == 0) {
94
      cfg->locate = 1;
94
      cfg->locate = 1;
95
    }
95
    }
96
    if (strstartswith(argv[i], "/e:") == 0) {
96
    if (strstartswith(argv[i], "/e:") == 0) {
97
      if ((atouns(&(cfg->envsiz), argv[i] + 3) != 0) || (cfg->envsiz < 64)) {
97
      if ((atous(&(cfg->envsiz), argv[i] + 3) != 0) || (cfg->envsiz < 64)) {
98
        cfg->envsiz = 0;
98
        cfg->envsiz = 0;
99
      }
99
      }
100
    }
100
    }
101
  }
101
  }
102
}
102
}