diff options
author | dillon <dillon@FreeBSD.org> | 1998-12-03 20:28:23 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 1998-12-03 20:28:23 +0000 |
commit | dd581b71fbd8fefe90f917339cdcc289454adc8b (patch) | |
tree | 5507c44ed26ac27bdd34fc2ae2c28cd7967fbb26 /sys/nfs | |
parent | ed174536c85f9159d64ee64eaf7002b16279b3fd (diff) | |
download | FreeBSD-src-dd581b71fbd8fefe90f917339cdcc289454adc8b.zip FreeBSD-src-dd581b71fbd8fefe90f917339cdcc289454adc8b.tar.gz |
Make bootp error message slightly more verbose
Diffstat (limited to 'sys/nfs')
-rw-r--r-- | sys/nfs/bootp_subr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs/bootp_subr.c b/sys/nfs/bootp_subr.c index c66e384..b6947ca 100644 --- a/sys/nfs/bootp_subr.c +++ b/sys/nfs/bootp_subr.c @@ -1,4 +1,4 @@ -/* $Id: bootp_subr.c,v 1.14 1998/08/18 00:32:47 bde Exp $ */ +/* $Id: bootp_subr.c,v 1.15 1998/08/23 03:07:16 wollman Exp $ */ /* * Copyright (c) 1995 Gordon Ross, Adam Glass @@ -345,7 +345,7 @@ bootpc_call(call,reply,procp) error = sosend(so, (struct sockaddr *)sin, &auio, NULL, NULL, 0, procp); if (error) { - printf("bootpc_call: sosend: %d\n", error); + printf("bootpc_call: sosend: %d state %08x\n", error, (int)so->so_state); goto out; } |