Message ID | 20171010231130.6832-2-simon@rozman.si |
---|---|
State | Accepted |
Headers | show |
Series | [Openvpn-devel,01/13] snwprintf() => _snwprintf() | expand |
Hi, On Tue, Oct 10, 2017 at 7:11 PM, <simon@rozman.si> wrote: > From: Simon Rozman <simon@rozman.si> > > --- > src/openvpnserv/interactive.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/src/openvpnserv/interactive.c b/src/openvpnserv/interactive.c > index 9d473e4..4b08086 100644 > --- a/src/openvpnserv/interactive.c > +++ b/src/openvpnserv/interactive.c > @@ -370,12 +370,12 @@ ValidateOptions(HANDLE pipe, const WCHAR *workdir, > const WCHAR *options) > BOOL ret = FALSE; > int i; > const WCHAR *msg1 = L"You have specified a config file location (%s > relative to %s)" > - " that requires admin approval. This error may be > avoided" > - " by adding your account to the \"%s\" group"; > + L" that requires admin approval. This error may > be avoided" > + L" by adding your account to the \"%s\" group"; > > const WCHAR *msg2 = L"You have specified an option (%s) that may be > used" > - " only with admin approval. This error may be > avoided" > - " by adding your account to the \"%s\" group"; > + L" only with admin approval. This error may be > avoided" > + L" by adding your account to the \"%s\" group"; > > argv = CommandLineToArgvW(options, &argc); > This one is easy, though the original is valid C99, MSVC does not support concatenating non-identically prefixed strings. ACK. <div dir="ltr"><div class="gmail_extra">Hi,</div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Oct 10, 2017 at 7:11 PM, <span dir="ltr"><<a href="mailto:simon@rozman.si" target="_blank">simon@rozman.si</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">From: Simon Rozman <<a href="mailto:simon@rozman.si" target="_blank">simon@rozman.si</a>><br> <br> ---<br> src/openvpnserv/interactive.c | 8 ++++----<br> 1 file changed, 4 insertions(+), 4 deletions(-)<br> <br> diff --git a/src/openvpnserv/interactive.<wbr>c b/src/openvpnserv/interactive.<wbr>c<br> index 9d473e4..4b08086 100644<br> --- a/src/openvpnserv/interactive.<wbr>c<br> +++ b/src/openvpnserv/interactive.<wbr>c<br> @@ -370,12 +370,12 @@ ValidateOptions(HANDLE pipe, const WCHAR *workdir, const WCHAR *options)<br> BOOL ret = FALSE;<br> int i;<br> const WCHAR *msg1 = L"You have specified a config file location (%s relative to %s)"<br> - " that requires admin approval. This error may be avoided"<br> - " by adding your account to the \"%s\" group";<br> + L" that requires admin approval. This error may be avoided"<br> + L" by adding your account to the \"%s\" group";<br> <br> const WCHAR *msg2 = L"You have specified an option (%s) that may be used"<br> - " only with admin approval. This error may be avoided"<br> - " by adding your account to the \"%s\" group";<br> + L" only with admin approval. This error may be avoided"<br> + L" by adding your account to the \"%s\" group";<br> <br> argv = CommandLineToArgvW(options, &argc);<br></blockquote><div><br></div><div>This one is easy, though the original is valid C99, MSVC does not support concatenating non-identically prefixed strings.</div><div><br></div><div>ACK.</div><div><br></div></div></div></div> ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot
Your patch has been applied to the master and release/2.4 branch. commit d6e0917922793315b06aba395ed0666e17c5b44c (master) commit 6e9da5a55673fe01ae7b780f0c438c81773109d5 (release/2.4) Author: Simon Rozman Date: Wed Oct 11 01:11:19 2017 +0200 Mixing wide and regular strings in concatenations is not allowed in MSVC. Acked-by: Selva Nair <selva.nair@gmail.com> Message-Id: <20171010231130.6832-2-simon@rozman.si> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg15579.html Signed-off-by: Gert Doering <gert@greenie.muc.de> -- kind regards, Gert Doering ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot
diff --git a/src/openvpnserv/interactive.c b/src/openvpnserv/interactive.c index 9d473e4..4b08086 100644 --- a/src/openvpnserv/interactive.c +++ b/src/openvpnserv/interactive.c @@ -370,12 +370,12 @@ ValidateOptions(HANDLE pipe, const WCHAR *workdir, const WCHAR *options) BOOL ret = FALSE; int i; const WCHAR *msg1 = L"You have specified a config file location (%s relative to %s)" - " that requires admin approval. This error may be avoided" - " by adding your account to the \"%s\" group"; + L" that requires admin approval. This error may be avoided" + L" by adding your account to the \"%s\" group"; const WCHAR *msg2 = L"You have specified an option (%s) that may be used" - " only with admin approval. This error may be avoided" - " by adding your account to the \"%s\" group"; + L" only with admin approval. This error may be avoided" + L" by adding your account to the \"%s\" group"; argv = CommandLineToArgvW(options, &argc);
From: Simon Rozman <simon@rozman.si> --- src/openvpnserv/interactive.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)