Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion rarp.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ static int rarp_file(int fd, const char *name)
continue;
}
if ((hp = gethostbyname(host)) == NULL) {
fprintf(stderr, _("rarp: %s: unknown host\n"), host);
fprintf(stderr, _("rarp: %s: unknown host line %u\n"), host, linenr);
continue;
}
if (rarp_set(fd, hp, addr) != 0) {
fprintf(stderr, _("rarp: cannot set entry from %s:%u\n"), name, linenr);
Expand Down
Loading