]> git.sur5r.net Git - openldap/commitdiff
Fix sizeof [r]buf typo
authorKurt Zeilenga <kurt@openldap.org>
Mon, 16 Sep 2002 21:35:33 +0000 (21:35 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Mon, 16 Sep 2002 21:35:33 +0000 (21:35 +0000)
servers/slurpd/replog.c

index d1f63a2295f7668b69af411fb984d5637f01e532..471275a6dfc11b0d4aeaf5be36407427ce08362d 100644 (file)
@@ -142,7 +142,7 @@ copy_replog(
     /*
      * Make our own private copy of the replication log.
      */
-    while (( p = fgets( rbuf, sizeof( buf ), rfp )) != NULL ) {
+    while (( p = fgets( rbuf, sizeof( rbuf ), rfp )) != NULL ) {
        fputs( rbuf, dfp );
     }
     /* Only truncate the source file if we're not in one-shot mode */