if i find one more little problem, and have to make one more little
authorderaadt <deraadt@openbsd.org>
Thu, 13 Feb 1997 22:32:46 +0000 (22:32 +0000)
committerderaadt <deraadt@openbsd.org>
Thu, 13 Feb 1997 22:32:46 +0000 (22:32 +0000)
tweak to this ip option handling code I am going to absolutely scream
in rage, following which I will rip the bloody innards out of netinet
and build my own new incompatible option checking/processing interface
that does not make it so hidiously difficult to check if a session has
source routes active!

lib/libc/rpc/svc_tcp.c
libexec/rlogind/rlogind.c
libexec/rshd/rshd.c

index c755ab1..d125027 100644 (file)
@@ -28,7 +28,7 @@
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: svc_tcp.c,v 1.10 1997/02/13 22:29:12 deraadt Exp $";
+static char *rcsid = "$OpenBSD: svc_tcp.c,v 1.11 1997/02/13 22:33:13 deraadt Exp $";
 #endif /* LIBC_SCCS and not lint */
 
 /*
@@ -255,7 +255,7 @@ rendezvous_request(xprt)
                if (!getsockopt(sock, IPPROTO_IP, IP_OPTIONS, (char *)&opts,
                    &optsize) && optsize != 0) {
                        for (i = 0; (void *)&opts.ipopt_list[i] - (void *)&opts <
-                           sizeof opts; ) {    
+                           optsize; ) {        
                                u_char c = (u_char)opts.ipopt_list[i];
                                if (c == IPOPT_LSRR || c == IPOPT_SSRR) {
                                        close(sock);
index 1d2ee6f..052b486 100644 (file)
@@ -39,7 +39,7 @@ static char copyright[] =
 
 #ifndef lint
 /* from: static char sccsid[] = "@(#)rlogind.c 8.1 (Berkeley) 6/4/93"; */
-static char *rcsid = "$Id: rlogind.c,v 1.18 1997/02/13 22:29:10 deraadt Exp $";
+static char *rcsid = "$Id: rlogind.c,v 1.19 1997/02/13 22:33:11 deraadt Exp $";
 #endif /* not lint */
 
 /*
@@ -270,7 +270,7 @@ doit(f, fromp)
                if (getsockopt(0, ipproto, IP_OPTIONS, (char *)&opts,
                    &optsize) == 0 && optsize != 0) {
                        for (i = 0; (void *)&opts.ipopt_list[i] - (void *)&opts <
-                           sizeof opts; ) {
+                           optsize; ) {
                                u_char c = (u_char)opts.ipopt_list[i];
                                if (c == IPOPT_LSRR || c == IPOPT_SSRR)
                                        exit(1);
index 8575b2e..a825e70 100644 (file)
@@ -39,7 +39,7 @@ static char copyright[] =
 
 #ifndef lint
 /* from: static char sccsid[] = "@(#)rshd.c    8.2 (Berkeley) 4/6/94"; */
-static char *rcsid = "$Id: rshd.c,v 1.15 1997/02/13 22:29:07 deraadt Exp $";
+static char *rcsid = "$Id: rshd.c,v 1.16 1997/02/13 22:32:46 deraadt Exp $";
 #endif /* not lint */
 
 /*
@@ -250,7 +250,7 @@ doit(fromp)
        if (!getsockopt(0, ipproto, IP_OPTIONS, (char *)&opts, &optsize) &&
            optsize != 0) {
                for (i = 0; (void *)&opts.ipopt_list[i] - (void *)&opts <
-                   sizeof opts; ) {    
+                   optsize; ) {        
                        u_char c = (u_char)opts.ipopt_list[i];
                        if (c == IPOPT_LSRR || c == IPOPT_SSRR)
                                exit(1);