Subversion Repositories SvarDOS

Rev

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

Rev 428 Rev 429
Line 104... Line 104...
104
    if (cmd_time_get_item(buff, ptrs[0]) != 0) goto FAIL;
104
    if (cmd_time_get_item(buff, ptrs[0]) != 0) goto FAIL;
105
    if (atous(&i, buff) != 0) goto FAIL;
105
    if (atous(&i, buff) != 0) goto FAIL;
106
    *mi = i;
106
    *mi = i;
107
  }
107
  }
108
 
108
 
109
  /* if minutes provided, read them */
109
  /* if seconds provided, read them */
110
  if (ptrs[1] != NULL) {
110
  if (ptrs[1] != NULL) {
111
    if (cmd_time_get_item(buff, ptrs[1]) != 0) goto FAIL;
111
    if (cmd_time_get_item(buff, ptrs[1]) != 0) goto FAIL;
112
    if (atous(&i, buff) != 0) goto FAIL;
112
    if (atous(&i, buff) != 0) goto FAIL;
113
    *se = i;
113
    *se = i;
114
  }
114
  }