step 3: bcopy->memcpy or memmove (chose by hand), twiddle args
authorMark Eichin <eichin@mit.edu>
Wed, 15 Jun 1994 21:49:52 +0000 (21:49 +0000)
committerMark Eichin <eichin@mit.edu>
Wed, 15 Jun 1994 21:49:52 +0000 (21:49 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3812 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/bsd/krlogin.c
src/appl/bsd/krlogind.c
src/appl/bsd/login.c
src/appl/bsd/setenv.c

index 5ebb581dee5d25bc717cd10cd5a32b6105256894..581e0b8e340b7a26c276f11a46bdbe4f93b34fcb 100644 (file)
@@ -1379,12 +1379,12 @@ int des_read(fd, buf, len)
       return(read(fd, buf, len));
     
     if (nstored >= len) {
-       bcopy(store_ptr, buf, len);
+       memcpy(buf, store_ptr, len);
        store_ptr += len;
        nstored -= len;
        return(len);
     } else if (nstored) {
-       bcopy(store_ptr, buf, nstored);
+       memcpy(buf, store_ptr, nstored);
        nreturned += nstored;
        buf += nstored;
        len -= nstored;
@@ -1435,12 +1435,12 @@ int des_read(fd, buf, len)
       store_ptr = storage;
     nstored = net_len;
     if (nstored > len) {
-       bcopy(store_ptr, buf, len);
+       memcpy(buf, store_ptr, len);
        nreturned += len;
        store_ptr += len;
        nstored -= len;
     } else {
-       bcopy(store_ptr, buf, nstored);
+       memcpy(buf, store_ptr, nstored);
        nreturned += nstored;
        nstored = 0;
     }
@@ -1471,10 +1471,10 @@ int des_write(fd, buf, len)
        }
        garbage = random();
        /* insert random garbage */
-       (void) bcopy(&garbage, garbage_buf, min(sizeof(long),8));
+       (void) memcpy(garbage_buf, &garbage, min(sizeof(long),8));
        
        /* this "right-justifies" the data in the buffer */
-       (void) bcopy(buf, garbage_buf + 8 - len, len);
+       (void) memcpy(garbage_buf + 8 - len, buf, len);
     }
     
     (void) mit_des_cbc_encrypt((len < 8) ? garbage_buf : buf,
index fb5c93b0c8b33cd62dc5e559a8d68872166c6537..fd0097efa11ca52b7d8173ba883440d37fab754c 100644 (file)
@@ -1543,12 +1543,12 @@ int len;
                return(read(fd, buf, len));
 
        if (nstored >= len) {
-               bcopy(store_ptr, buf, len);
+               memcpy(buf, store_ptr, len);
                store_ptr += len;
                nstored -= len;
                return(len);
        } else if (nstored) {
-               bcopy(store_ptr, buf, nstored);
+               memcpy(buf, store_ptr, nstored);
                nreturned += nstored;
                buf += nstored;
                len -= nstored;
@@ -1590,12 +1590,12 @@ int len;
                store_ptr = storage;
        nstored = net_len;
        if (nstored > len) {
-               bcopy(store_ptr, buf, len);
+               memcpy(buf, store_ptr, len);
                nreturned += len;
                store_ptr += len;
                nstored -= len;
        } else {
-               bcopy(store_ptr, buf, nstored);
+               memcpy(buf, store_ptr, nstored);
                nreturned += nstored;
                nstored = 0;
        }
@@ -1641,10 +1641,10 @@ int len;
                }
                garbage = random();
                /* insert random garbage */
-               (void) bcopy(&garbage, garbage_buf, min(sizeof(long),8));
+               (void) memcpy(garbage_buf, &garbage, min(sizeof(long),8));
 
                /* this "right-justifies" the data in the buffer */
-               (void) bcopy(buf, garbage_buf + 8 - len, len);
+               (void) memcpy(garbage_buf + 8 - len, buf, len);
        }
        (void) pcbc_encrypt((len < 8) ? garbage_buf : buf,
                            des_outbuf,
index aeec53d74a4cdcbea0e02f7d65273103110ee4f2..4791801f0e5bd0823ea89f2ac9f086c6c885d2a1 100644 (file)
@@ -1029,8 +1029,8 @@ do_krb_login(host, strict)
        (void) memset((char *) &sin, 0, (int) sizeof(sin));
 
         if (hp)
-                (void) bcopy (hp->h_addr, (char *)&sin.sin_addr,
-                             sizeof(sin.sin_addr));
+                (void) memcpy ((char *)&sin.sin_addr, hp->h_addr,
+                              sizeof(sin.sin_addr));
        else
                sin.sin_addr.s_addr = inet_addr(host);
 
index 08fa5f7ea5720967bc28352672345842304179e8..0b670db5d1bd493014d30ea080c69af8eb28c3a3 100644 (file)
@@ -65,7 +65,7 @@ setenv(name, value, rewrite)
                            (cnt + 2)));
                        if (!P)
                                return(-1);
-                       bcopy(environ, P, cnt * sizeof(char *));
+                       memcpy(P, environ, cnt * sizeof(char *));
                        environ = P;
                }
                environ[cnt + 1] = NULL;