[PATCH v3 08/10] notmuch-config: use strchr(), not index() (Solaris support)

2013-08-24 Thread David Bremner
Blake Jones writes: > notmuch-config.c has the only use of the function named "index()" in the > notmuch source. Several other places use the equivalent function > "strchr()"; this patch just fixes notmuch-config.c to use strchr() > instead. (Solaris needs to include to get the prototype for

Re: [PATCH v3 08/10] notmuch-config: use strchr(), not index() (Solaris support)

2013-08-24 Thread David Bremner
Blake Jones bla...@foo.net writes: notmuch-config.c has the only use of the function named index() in the notmuch source. Several other places use the equivalent function strchr(); this patch just fixes notmuch-config.c to use strchr() instead. (Solaris needs to include strings.h to get the

[PATCH v3 08/10] notmuch-config: use strchr(), not index() (Solaris support)

2012-11-13 Thread Blake Jones
notmuch-config.c has the only use of the function named "index()" in the notmuch source. Several other places use the equivalent function "strchr()"; this patch just fixes notmuch-config.c to use strchr() instead. (Solaris needs to include to get the prototype for index(), and notmuch-config.c

[PATCH v3 08/10] notmuch-config: use strchr(), not index() (Solaris support)

2012-11-13 Thread Blake Jones
notmuch-config.c has the only use of the function named index() in the notmuch source. Several other places use the equivalent function strchr(); this patch just fixes notmuch-config.c to use strchr() instead. (Solaris needs to include strings.h to get the prototype for index(), and