View | Details | Raw Unified | Return to bug 2125
Collapse All | Expand All

(-)ssh-keygen.c (-1 / +2 lines)
Lines 2195-2201 main(int argc, char **argv) Link Here
2195
	/* we need this for the home * directory.  */
2195
	/* we need this for the home * directory.  */
2196
	pw = getpwuid(getuid());
2196
	pw = getpwuid(getuid());
2197
	if (!pw) {
2197
	if (!pw) {
2198
		printf("You don't exist, go away!\n");
2198
		printf("No user exists for uid %lu\n",
2199
		    (u_long)original_real_uid);
2199
		exit(1);
2200
		exit(1);
2200
	}
2201
	}
2201
	if (gethostname(hostname, sizeof(hostname)) < 0) {
2202
	if (gethostname(hostname, sizeof(hostname)) < 0) {
(-)ssh.c (-1 / +1 lines)
Lines 270-276 main(int ac, char **av) Link Here
270
	/* Get user data. */
270
	/* Get user data. */
271
	pw = getpwuid(original_real_uid);
271
	pw = getpwuid(original_real_uid);
272
	if (!pw) {
272
	if (!pw) {
273
		logit("You don't exist, go away!");
273
		logit("No user exists for uid %lu", (u_long)original_real_uid);
274
		exit(255);
274
		exit(255);
275
	}
275
	}
276
	/* Take a copy of the returned structure. */
276
	/* Take a copy of the returned structure. */

Return to bug 2125