ossp-pkg/sa/sa.c 1.16 -> 1.17
--- sa.c 2001/10/09 14:05:55 1.16
+++ sa.c 2001/10/09 14:58:22 1.17
@@ -769,7 +769,7 @@
nBytes = (prefixlen / 8);
nBits = (prefixlen % 8);
if (nBytes > 0) {
- if (memcmp(ucp1, ucp1, nBytes) != 0)
+ if (memcmp(ucp1, ucp2, nBytes) != 0)
return SA_ERR_MTC;
}
if (nBits > 0) {
|
|