[BACK]Return to ssh-add.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/ssh-add.c between version 1.154 and 1.155

version 1.154, 2020/02/26 13:40:09 version 1.155, 2020/03/16 02:17:02
Line 711 
Line 711 
                         break;                          break;
                 case 't':                  case 't':
                         if ((lifetime = convtime(optarg)) == -1 ||                          if ((lifetime = convtime(optarg)) == -1 ||
                             lifetime < 0 || lifetime > UINT32_MAX) {                              lifetime < 0 || (u_long)lifetime > UINT32_MAX) {
                                 fprintf(stderr, "Invalid lifetime\n");                                  fprintf(stderr, "Invalid lifetime\n");
                                 ret = 1;                                  ret = 1;
                                 goto done;                                  goto done;

Legend:
Removed from v.1.154  
changed lines
  Added in v.1.155