chiark
/
gitweb
/
~mdw
/
become
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Cosmetic change: use sizeof(destination) in memcpy.
[become]
/
src
/
bcquery.c
diff --git
a/src/bcquery.c
b/src/bcquery.c
index e43d0751d61b205e73871a3d3775d6aff2c37975..ff2948b808ac4d262d9023dd98ef73c4b25e09e9 100644
(file)
--- a/
src/bcquery.c
+++ b/
src/bcquery.c
@@
-1,6
+1,6
@@
/* -*-c-*-
*
/* -*-c-*-
*
- * $Id: bcquery.c,v 1.
1 1998/04/23 13:20:20
mdw Exp $
+ * $Id: bcquery.c,v 1.
2 1998/06/26 10:32:31
mdw Exp $
*
* Query and dump Become's configuration file
*
*
* Query and dump Become's configuration file
*
@@
-29,6
+29,9
@@
/*----- Revision history --------------------------------------------------*
*
* $Log: bcquery.c,v $
/*----- Revision history --------------------------------------------------*
*
* $Log: bcquery.c,v $
+ * Revision 1.2 1998/06/26 10:32:31 mdw
+ * Cosmetic change: use sizeof(destination) in memcpy.
+ *
* Revision 1.1 1998/04/23 13:20:20 mdw
* Added new program to verify and query Become configuration files.
*
* Revision 1.1 1998/04/23 13:20:20 mdw
* Added new program to verify and query Become configuration files.
*
@@
-326,7
+329,7
@@
static qnode *qparse_atom(void)
if (!h)
die("unknown host `%s'", optarg);
q->q_cat = cat_where;
if (!h)
die("unknown host `%s'", optarg);
q->q_cat = cat_where;
- memcpy(&q->q_in, h->h_addr, sizeof(
struct in_addr
));
+ memcpy(&q->q_in, h->h_addr, sizeof(
q->q_in
));
nextopt();
return (q);
}
nextopt();
return (q);
}