acmed: tokenize domains from subject also with spaces (fixed multidom cert)
This commit is contained in:
parent
87eb9bc2b7
commit
79c6a0f342
1 changed files with 1 additions and 1 deletions
|
@ -756,7 +756,7 @@ getcert(char *csrpath)
|
|||
sysfatal("decode csr: %r");
|
||||
if((csr = encurl64(der, nder)) == nil)
|
||||
sysfatal("encode %s: %r", csrpath);
|
||||
if((ndom = getfields(name, dom, nelem(dom), 1, ",")) == nelem(dom))
|
||||
if((ndom = getfields(name, dom, nelem(dom), 1, ", ")) == nelem(dom))
|
||||
sysfatal("too man domains");
|
||||
rsapubfree(rsa);
|
||||
close(fd);
|
||||
|
|
Loading…
Reference in a new issue