Home | History | Annotate | Download | only in openssh

Lines Matching full:errstr

1929 	const char *errstr;
1962 bits = (u_int32_t)strtonum(optarg, 256, 32768, &errstr);
1963 if (errstr)
1965 optarg, errstr);
2078 UINT_MAX, &errstr);
2079 if (errstr)
2081 optarg, errstr);
2084 trials = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
2085 if (errstr)
2087 optarg, errstr);
2090 memory = (u_int32_t)strtonum(optarg, 1, UINT_MAX, &errstr);
2091 if (errstr)
2092 fatal("Memory limit is %s: %s", errstr, optarg);
2115 cert_serial = strtonum(optarg, 0, LLONG_MAX, &errstr);
2116 if (errstr)
2117 fatal("Invalid serial number: %s", errstr);