]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
scepclient: Don't use a block-scope buffer for the default DN
authorTobias Brunner <tobias@strongswan.org>
Fri, 30 Nov 2018 09:28:50 +0000 (10:28 +0100)
committerTobias Brunner <tobias@strongswan.org>
Mon, 3 Dec 2018 10:54:05 +0000 (11:54 +0100)
The correct behavior will depend on the compiler.

Fixes #2843.

src/scepclient/scepclient.c

index 83079f3d8326f090830f4b9fa2d14d308a2ad542..754393455cf4d1699388891404af8b0001bd5ab6 100644 (file)
@@ -455,6 +455,7 @@ int main(int argc, char **argv)
 
        /* distinguished name for requested certificate, ASCII format */
        char *distinguishedName = NULL;
+       char default_distinguished_name[BUF_LEN];
 
        /* challenge password */
        char challenge_password_buffer[MAX_PASSWORD_LENGTH];
@@ -1105,16 +1106,16 @@ int main(int argc, char **argv)
        {
                if (distinguishedName == NULL)
                {
-                       char buf[BUF_LEN];
-                       int n = sprintf(buf, DEFAULT_DN);
+                       int n = sprintf(default_distinguished_name, DEFAULT_DN);
 
                        /* set the common name to the hostname */
-                       if (gethostname(buf + n, BUF_LEN - n) || strlen(buf) == n)
+                       if (gethostname(default_distinguished_name + n, BUF_LEN - n) ||
+                               strlen(default_distinguished_name) == n)
                        {
                                exit_scepclient("no hostname defined, use "
                                                                "--dn <distinguished name> option");
                        }
-                       distinguishedName = buf;
+                       distinguishedName = default_distinguished_name;
                }
 
                DBG2(DBG_APP, "dn: '%s'", distinguishedName);