801. [bug] nsupdate should treat lines beginning with ';' as
comments. [RT #1139]
802. [bug] DNSSEC key tags were computed incorrectly in almost
all cases. [RT #1146]
+ 801. [bug] nsupdate should treat lines beginning with ';' as
+ comments. [RT #1139]
+
800. [bug] dnssec-signzone produced incorrect statistics for
large zones. [RT #1133]
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: nsupdate.c,v 1.75.2.4 2001/04/11 19:05:39 gson Exp $ */
+/* $Id: nsupdate.c,v 1.75.2.5 2001/04/12 17:36:55 gson Exp $ */
#include <config.h>
if (feof(input))
return (STATUS_QUIT);
- if (*word == 0)
+ if (word == 0)
return (STATUS_SEND);
+ if (word[0] == ';')
+ return (STATUS_MORE);
if (strcasecmp(word, "quit") == 0)
return (STATUS_QUIT);
if (strcasecmp(word, "prereq") == 0)