mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 08:50:00 -04:00
801. [bug] nsupdate should treat lines beginning with ';' as
comments. [RT #1139]
This commit is contained in:
parent
5c3efef926
commit
3efd690413
2 changed files with 6 additions and 1 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
801. [bug] nsupdate should treat lines beginning with ';' as
|
||||
comments. [RT #1139]
|
||||
|
||||
800. [bug] dnssec-signzone produced incorrect statistics for
|
||||
large zones. [RT #1133]
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: nsupdate.c,v 1.87 2001/03/30 00:38:27 bwelling Exp $ */
|
||||
/* $Id: nsupdate.c,v 1.88 2001/03/30 22:48:35 bwelling Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -1257,6 +1257,8 @@ get_next_command(void) {
|
|||
return (STATUS_QUIT);
|
||||
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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue