summaryrefslogtreecommitdiffstats
path: root/gf-error-codes.h.template
blob: ab6020d640d63353d20d465d2b8aee64a085c6e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/***************************************************************/
/**                                                           **/
/**                   DO NOT EDIT THIS FILE                   **/
/**           THIS IS AUTO-GENERATED FROM LOG BOOK            **/
/**         YOUR CHANGES WILL BE LOST IN NEXT BUILD           **/
/**                                                           **/
/***************************************************************/

#ifndef _GF_ERROR_CODES_H
#define _GF_ERROR_CODES_H

#include <libintl.h>

#define _(STRING)    gettext(STRING)


/** START: ERROR CODE DEFINITIONS **/
$DEFINES
/** END: ERROR CODE DEFINITIONS **/


/** START: FUNCTION RETURNS MESSAGE OF GIVEN ERROR CODE **/
const char *
_gf_get_message (int code) {
        switch (code) {
$CASES
        default: return NULL;
        }
}
/** END: FUNCTION RETURNS MESSAGE OF GIVEN ERROR CODE **/


#endif
* Fix mismatch in size of used buffer to prevent an infinite loopPavan Sondur2009-05-291-1/+1 | | | | | | A mismatch in the size of the used buffer, between reading and then further writing caused an infinite loop and big files(1Mb, 10Mb etc) could not be downloaded through the lighttpd web service using mod_glusterfs. This is because the big file which is broken up into chunks, has a read and a subsequent write. Signed-off-by: Anand V. Avati <avati@dev.gluster.com> * apache/2.2/mod_glusterfs: port to use new glusterfs_readdir interface.Raghavendra G2009-05-161-5/+5 | | | | Signed-off-by: Anand V. Avati <avati@amp.gluster.com> * mod_glusterfs/apache/2.2: fix segmentation faultRaghavendra G2009-04-301-1/+1 | | | | Signed-off-by: Anand V. Avati <avati@amp.gluster.com> * mod_glusterfs/lighttpd/1.4: port to use virtual mountpoints.Raghavendra G2009-04-232-17/+15 | | | | Signed-off-by: Anand V. Avati <avati@amp.gluster.com> * mod_glusterfs/lighttpd/1.4: ensure each line is no more than 80 charactersRaghavendra G2009-04-231-39/+58 | | | | Signed-off-by: Anand V. Avati <avati@amp.gluster.com> * mod_glusterfs: port apache/1.3/mod_glusterfs to use virtual mount pointsRaghavendra G2009-04-231-19/+8 | | | | Signed-off-by: Anand V. Avati <avati@amp.gluster.com> * apache/1.3/mod_glusterfs: ensure each line is of maximum 80 characters.Raghavendra G2009-04-231-39/+42 | | | | Signed-off-by: Anand V. Avati <avati@amp.gluster.com> * mod_glusterfs: port apache/2.2/mod_glusterfs to use virtual mount pointsRaghavendra G2009-04-231-58/+24 | | | | Signed-off-by: Anand V. Avati <avati@amp.gluster.com> * mod_glusterfs: coding guidelines related changesRaghavendra G2009-04-231-454/+578 | | | | | | | - make sure code fits into 80 character lines. - proper indentation of declarations. Signed-off-by: Anand V. Avati <avati@amp.gluster.com> * mod_glusterfs/lighttpd/1.4 port and memory leak fixesRaghavendra G2009-04-032-99/+196 | | | | | | - port owing to changes in interface of libglusterfsclient. Signed-off-by: Anand V. Avati <avati@amp.gluster.com> * mod_glusterfs/apache/1.3 portRaghavendra G2009-04-031-25/+26 | | | | | | - port owing to changes in interface of libglusterfsclient. Signed-off-by: Anand V. Avati <avati@amp.gluster.com> * mod_glusterfs/apache/2.2 portRaghavendra G2009-04-031-20/+21 | | | | | | - port owing to changes in interface of libglusterfsclient. Signed-off-by: Anand V. Avati <avati@amp.gluster.com> * removed word "tla" from last of the remaining filesHarshavardhana2009-03-101-1/+1 | | | | Signed-off-by: Anand V. Avati <avati@amp.gluster.com> * updated copyright header to extend copyright upto 2009Basavanagowda Kanur2009-02-266-6/+6 | | | | | | updated copyright header to include 2009. Signed-off-by: Anand V. Avati <avati@amp.gluster.com> * change MALLOC to mallocRaghavendra G2009-02-252-3/+3 | | | | Signed-off-by: Anand V. Avati <avati@amp.gluster.com> * Added all filesVikas Gorur2009-02-1821-0/+7766