unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
From: David Bremner <david@tethera.net>
To: Daniel Kahn Gillmor <dkg@fifthhorseman.net>,
	Notmuch Mail <notmuch@notmuchmail.org>
Subject: Re: [PATCH v3 01/16] add util/search-path.{c, h} to test for executables in $PATH
Date: Tue, 09 Feb 2016 08:57:15 -0400	[thread overview]
Message-ID: <87oabqvy6s.fsf@maritornes.cs.unb.ca> (raw)
In-Reply-To: <1454272801-23623-2-git-send-email-dkg@fifthhorseman.net>

[-- Attachment #1: Type: text/plain, Size: 408 bytes --]

Daniel Kahn Gillmor <dkg@fifthhorseman.net> writes:

> +notmuch_bool_t
> +test_for_executable(const char* exename)
> +{
> +    char *c = NULL, *save = NULL, *tok;
> +    size_t n;
> +    int dfd = -1;

c, dfd, and n could be more meaningful as variable names.

% uncrustify --config devel/uncrustify.cfg --replace util/search-path.c util/search-path.h

yields quite a few whitespace changes (diff attached)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: wschanges.diff --]
[-- Type: text/x-diff, Size: 2191 bytes --]

diff --git a/util/search-path.c b/util/search-path.c
index 5eac367..39601e4 100644
--- a/util/search-path.c
+++ b/util/search-path.c
@@ -9,47 +9,47 @@
 
 
 notmuch_bool_t
-test_for_executable(const char* exename)
+test_for_executable (const char *exename)
 {
     char *c = NULL, *save = NULL, *tok;
     size_t n;
     int dfd = -1;
     notmuch_bool_t ret = FALSE;
 
-    if (strchr(exename, '/')) {
-	if (0 == access(exename, X_OK))
+    if (strchr (exename, '/')) {
+	if (0 == access (exename, X_OK))
 	    return TRUE;
 	else
 	    return FALSE;
     }
-    
-    c = getenv("PATH");
+
+    c = getenv ("PATH");
     if (c)
-	c = talloc_strdup(NULL, c);
+	c = talloc_strdup (NULL, c);
     else {
-	n = confstr(_CS_PATH, NULL, 0);
-	c = (char*)talloc_size(NULL, n);
-	if (!c)
+	n = confstr (_CS_PATH, NULL, 0);
+	c = (char *) talloc_size (NULL, n);
+	if (! c)
 	    return FALSE;
-	confstr(_CS_PATH, c, n);
+	confstr (_CS_PATH, c, n);
     }
 
-    tok = strtok_r(c, ":", &save);
+    tok = strtok_r (c, ":", &save);
     while (tok) {
-	dfd = open(tok, O_DIRECTORY | O_RDONLY);
+	dfd = open (tok, O_DIRECTORY | O_RDONLY);
 	if (dfd != -1) {
-	    if (!faccessat(dfd, exename, X_OK, 0)) {
+	    if (! faccessat (dfd, exename, X_OK, 0)) {
 		ret = TRUE;
 		goto done;
 	    }
-	    close(dfd);
+	    close (dfd);
 	}
-	tok = strtok_r(NULL, ":", &save);
+	tok = strtok_r (NULL, ":", &save);
     }
-done:
+  done:
     if (dfd != -1)
-	close(dfd);
+	close (dfd);
     if (c)
-	talloc_free(c);
+	talloc_free (c);
     return ret;
 }
diff --git a/util/search-path.h b/util/search-path.h
index 727d0b3..14c4d14 100644
--- a/util/search-path.h
+++ b/util/search-path.h
@@ -4,13 +4,13 @@
 #include "notmuch.h"
 
 /* can an executable be found with the given name?
- * 
+ *
  * Return TRUE only if we can find something to execute with the
  * associated name.
  *
  * if the name has a '/' in it, we look for it directly with
  * access(exename, X_OK).
- * 
+ *
  * otherwise, we look for it in $PATH (or in confstr(_CS_PATH), if
  * $PATH is unset).
  *
@@ -19,6 +19,6 @@
  */
 
 notmuch_bool_t
-test_for_executable(const char *exename);
+test_for_executable (const char *exename);
 
 #endif

[-- Attachment #3: Type: text/plain, Size: 922 bytes --]


> +    notmuch_bool_t ret = FALSE;
> +
> +    if (strchr(exename, '/')) {
> +	if (0 == access(exename, X_OK))
> +	    return TRUE;
> +	else
> +	    return FALSE;
> +    }
> +    
> +    c = getenv("PATH");
> +    if (c)
> +	c = talloc_strdup(NULL, c);

Is there some advantage to using the talloc_ functions here?

> +    else {

Is n needed outside this block? if not, it could be declared here (and
then I don't care about the single letter name).

> +	n = confstr(_CS_PATH, NULL, 0);

according to a glance at the man page, this might return 0 if there is
no value for _CS_PATH set?


> +
> +    tok = strtok_r(c, ":", &save);
> +    while (tok) {
same comment about block local declaration of dfd

> +	dfd = open(tok, O_DIRECTORY | O_RDONLY);

> +	tok = strtok_r(NULL, ":", &save);

not sure if it helps, but there is also strtok_len in libutil

> +done:

as a real nitpick, we have always (?) used DONE for a label.

  reply	other threads:[~2016-02-09 12:57 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-31 20:39 Allow indexing cleartext of encrypted messages (v3) Daniel Kahn Gillmor
2016-01-31 20:39 ` [PATCH v3 01/16] add util/search-path.{c, h} to test for executables in $PATH Daniel Kahn Gillmor
2016-02-09 12:57   ` David Bremner [this message]
2016-02-09 21:52     ` [PATCH v4] " Daniel Kahn Gillmor
2016-01-31 20:39 ` [PATCH v3 02/16] Move crypto.c into libutil Daniel Kahn Gillmor
2016-02-10  2:21   ` David Bremner
2016-02-10 14:34     ` Daniel Kahn Gillmor
2016-01-31 20:39 ` [PATCH v3 03/16] make shared crypto code behave library-like Daniel Kahn Gillmor
2016-02-10  2:37   ` David Bremner
2016-02-10 16:18     ` Daniel Kahn Gillmor
2016-01-31 20:39 ` [PATCH v3 04/16] Provide _notmuch_crypto_{set,get}_gpg_path Daniel Kahn Gillmor
2016-02-10 11:45   ` David Bremner
2016-02-10 16:31     ` Daniel Kahn Gillmor
2016-01-31 20:39 ` [PATCH v3 05/16] Use a blank _notmuch_crypto to choose the default gpg_path Daniel Kahn Gillmor
2016-02-10 11:49   ` David Bremner
2016-02-10 16:37     ` Daniel Kahn Gillmor
2016-01-31 20:39 ` [PATCH v3 06/16] Prefer gpg2 in the test suite if available Daniel Kahn Gillmor
2016-02-10 11:54   ` David Bremner
2016-02-10 16:39     ` Daniel Kahn Gillmor
2016-02-10 20:28       ` David Bremner
2016-02-11  7:16       ` Tomi Ollila
2016-01-31 20:39 ` [PATCH v3 07/16] create a notmuch_indexopts_t index options object Daniel Kahn Gillmor
2016-02-27 13:06   ` David Bremner
2016-01-31 20:39 ` [PATCH v3 08/16] reorganize indexing of multipart/signed and multipart/encrypted Daniel Kahn Gillmor
2016-02-27 13:14   ` David Bremner
2016-01-31 20:39 ` [PATCH v3 09/16] index encrypted parts when asked Daniel Kahn Gillmor
2016-02-27 15:49   ` David Bremner
2016-01-31 20:39 ` [PATCH v3 10/16] Add n_d_add_message_with_indexopts (extension of n_d_add_message) Daniel Kahn Gillmor
2016-01-31 20:39 ` [PATCH v3 11/16] add --try-decrypt to notmuch insert Daniel Kahn Gillmor
2016-02-27 15:55   ` David Bremner
2016-01-31 20:39 ` [PATCH v3 12/16] add --try-decrypt to notmuch new Daniel Kahn Gillmor
2016-01-31 20:39 ` [PATCH v3 13/16] add indexopts to notmuch python bindings Daniel Kahn Gillmor
2016-02-28 14:22   ` David Bremner
2016-01-31 20:39 ` [PATCH v3 14/16] test indexing cleartext version of delivered messages Daniel Kahn Gillmor
2016-01-31 20:40 ` [PATCH v3 15/16] added notmuch_message_reindex Daniel Kahn Gillmor
2016-02-10  0:41   ` Jameson Graef Rollins
2016-02-10  1:01     ` Daniel Kahn Gillmor
2016-02-10 17:21       ` Daniel Kahn Gillmor
2016-02-13 18:13         ` David Bremner
2016-02-28 14:52   ` David Bremner
2016-01-31 20:40 ` [PATCH v3 16/16] add "notmuch reindex" subcommand Daniel Kahn Gillmor
2016-02-28 15:05   ` David Bremner
2016-02-06 20:48 ` Allow indexing cleartext of encrypted messages (v3) Tomi Ollila
2016-02-09  8:08 ` Jameson Graef Rollins

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

  List information: https://notmuchmail.org/

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

  git send-email \
    --in-reply-to=87oabqvy6s.fsf@maritornes.cs.unb.ca \
    --to=david@tethera.net \
    --cc=dkg@fifthhorseman.net \
    --cc=notmuch@notmuchmail.org \
    /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.
Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).