]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1327. [bug] nsupdate: allow white space base64 key data.
authorMark Andrews <marka@isc.org>
Mon, 17 Jun 2002 02:30:40 +0000 (02:30 +0000)
committerMark Andrews <marka@isc.org>
Mon, 17 Jun 2002 02:30:40 +0000 (02:30 +0000)
CHANGES
bin/nsupdate/nsupdate.c

diff --git a/CHANGES b/CHANGES
index dc731cf1d8f0dee5120bf67fbfbdf57231cebc19..adec805082c30911116c7b01c3ac5924ee23a0f5 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+1327.  [bug]           nsupdate: allow white space base64 key data.
+
 1326.  [bug]           Badly encoded LOC record when the size, horizontal
                        precision or vertical precision was 0.1m.
 
index 2e6e9022d8cc9029b103a3b655d5a9f3ccf774e9..774fc43f6cdd2c715745b987c0c9a6552cd77732 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: nsupdate.c,v 1.118 2002/04/18 00:22:17 marka Exp $ */
+/* $Id: nsupdate.c,v 1.119 2002/06/17 02:30:40 marka Exp $ */
 
 #include <config.h>
 
@@ -1002,7 +1002,7 @@ evaluate_key(char *cmdline) {
                return (STATUS_SYNTAX);
        }
 
-       secretstr = nsu_strsep(&cmdline, " \t\r\n");
+       secretstr = nsu_strsep(&cmdline, "\r\n");
        if (*secretstr == 0) {
                fprintf(stderr, "could not read key secret\n");
                return (STATUS_SYNTAX);