All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gregory Farnum <greg@gregs42.com>
To: James Devine <fxmulder@gmail.com>
Cc: "ceph-devel@vger.kernel.org" <ceph-devel@vger.kernel.org>
Subject: Re: [PATCH] Allow CRLF in config files
Date: Tue, 16 Jun 2015 02:54:13 -0700	[thread overview]
Message-ID: <CAC6JEv8oSYP_vZoDw62cQ3U-WNQAfa-5BjqF2K8-q6EUMuS-3g@mail.gmail.com> (raw)
In-Reply-To: <1434412418-32247-1-git-send-email-fxmulder@gmail.com>

Can you submit this as a Github pull request?
We can take patches to userspace code over the mailing list but
they're more likely to get lost if you go that route.
-Greg

On Mon, Jun 15, 2015 at 4:53 PM, James Devine <fxmulder@gmail.com> wrote:
> Change config fopen to binary mode, allowing LF and CRLF EOL characters so
> ceph-dokan can work with native windows configuration files going forward.
> The carriage return is ignored and trimmed as whitespace during parsing via
> isspace().
>
> Signed-off-by: James Devine <fxmulder@gmail.com>
> ---
>  src/common/ConfUtils.cc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/common/ConfUtils.cc b/src/common/ConfUtils.cc
> index 1ae5df5..a717077 100644
> --- a/src/common/ConfUtils.cc
> +++ b/src/common/ConfUtils.cc
> @@ -99,7 +99,7 @@ parse_file(const std::string &fname, std::deque<std::string> *errors,
>    int ret = 0;
>    size_t sz;
>    char *buf = NULL;
> -  FILE *fp = fopen(fname.c_str(), "r");
> +  FILE *fp = fopen(fname.c_str(), "rb");
>    if (!fp) {
>      ret = -errno;
>      return ret;
> --
> 1.9.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

      reply	other threads:[~2015-06-16  9:54 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-15 23:53 [PATCH] Allow CRLF in config files James Devine
2015-06-16  9:54 ` Gregory Farnum [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAC6JEv8oSYP_vZoDw62cQ3U-WNQAfa-5BjqF2K8-q6EUMuS-3g@mail.gmail.com \
    --to=greg@gregs42.com \
    --cc=ceph-devel@vger.kernel.org \
    --cc=fxmulder@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.