Manvendra Bhangui

Results 61 comments of Manvendra Bhangui

one can use __STDC_VERSION__ in noreturn.h https://stackoverflow.com/questions/28552467/is-there-a-way-to-use-gcc-attribute-noreturn-and-stdnoreturn-h-sanely-i There is the suggestion to use `__attribute__((__noreturn__))` instead of `__attribute__((noreturn))` and also using __STDC_VERSION__ to avoid problems with including ``` #if defined(__STDC_VERSION__) &&...

including stdnoreturn.h breaks gcc if you use \__attribute__ ((noreturn)). I had this problem last year compiling ezmlm-idx. ezmlm-idx uses this macro in die.h and cgi.h. I managed to find what...

I did some tests and it turns out the glibc versions are so much faster. strlen is faster than str_len, strncmp is faster than str_diffn, strrchr is faster than str_rchr...

> In my own (unpublished) qmail fork I have a set of patches to do this. I created a separate auto_qmail_bin, auto_qmail_doc, auto_qmail_doc which all default to /var/qmail (the same...

I have gone through this FHS difficulty in indimail (the design of which is based on vpopmail). What I had to deal with were the following 1. many programs do...

The patch has one more tiny problem. The variable `asciihost` should be null terminated after stralloc_copys(&asciihost, ascii) ``` @@ -702,9 +793,17 @@ relayhost[i] = 0; } if (!stralloc_copys(&host,relayhost)) temp_nomem(); +...

This is EH's version. https://www.fehcom.de/sqmail/doxygen/qmail-remote_8c_source.html

I ended up testing both versions. 1. Arnt's version has two bugs. One which you mentioned above and another one regarding null termination 2. EH's version has a smaller parser...

The function is called just once, before the blast() function, and exits the moment it sees the UTF8 in the received header or the Date: header, whichever comes first.

> please rebase this on current master so it get's easier to review I am a noob when using git. How do I do that. in the webui, the 'Rebase...