Created
June 13, 2015 05:46
-
-
Save knakayama/5bad584fcdf6d6a2ea8f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -Naur procmail-3.22-getline/src/fields.c procmail-3.22/src/fields.c | |
--- procmail-3.22-getline/src/fields.c 2015-06-13 14:43:11.000000000 +0900 | |
+++ procmail-3.22/src/fields.c 2015-06-13 14:00:14.000000000 +0900 | |
@@ -110,16 +110,16 @@ | |
/* try and append one valid field to rdheader from stdin */ | |
int readhead P((void)) | |
{ int idlen; | |
- getline(); | |
+ get_line(); | |
if((idlen=breakfield(buf,buffilled))<=0) /* not the start of a valid field */ | |
return 0; | |
if(idlen==STRLEN(FROM)&&eqFrom_(buf)) /* it's a From_ line */ | |
{ if(rdheader) | |
return 0; /* the From_ line was a fake! */ | |
- for(;buflast=='>';getline()); /* gather continued >From_ lines */ | |
+ for(;buflast=='>';get_line()); /* gather continued >From_ lines */ | |
} | |
else | |
- for(;;getline()) /* get the rest of the continued field */ | |
+ for(;;get_line()) /* get the rest of the continued field */ | |
{ switch(buflast) /* will this line be continued? */ | |
{ case ' ':case '\t': /* yep, it sure is */ | |
continue; | |
diff -Naur procmail-3.22-getline/src/formail.c procmail-3.22/src/formail.c | |
--- procmail-3.22-getline/src/formail.c 2015-06-13 14:43:11.000000000 +0900 | |
+++ procmail-3.22/src/formail.c 2015-06-13 14:00:45.000000000 +0900 | |
@@ -819,7 +819,7 @@ | |
{ if(split) /* gobble up the next start separator */ | |
{ buffilled=0; | |
#ifdef sMAILBOX_SEPARATOR | |
- getline();buffilled=0; /* but only if it's defined */ | |
+ get_line();buffilled=0; /* but only if it's defined */ | |
#endif | |
if(buflast!=EOF) /* if any */ | |
goto splitit; | |
diff -Naur procmail-3.22-getline/src/formisc.c procmail-3.22/src/formisc.c | |
--- procmail-3.22-getline/src/formisc.c 2015-06-13 14:43:11.000000000 +0900 | |
+++ procmail-3.22/src/formisc.c 2015-06-13 14:01:12.000000000 +0900 | |
@@ -115,7 +115,7 @@ | |
buf[buffilled++]=c; | |
} | |
-int getline P((void)) /* read a newline-terminated line */ | |
+int get_line P((void)) /* read a newline-terminated line */ | |
{ if(buflast==EOF) /* at the end of our Latin already? */ | |
{ loadchar('\n'); /* fake empty line */ | |
return EOF; /* spread the word */ | |
diff -Naur procmail-3.22-getline/src/formisc.h procmail-3.22/src/formisc.h | |
--- procmail-3.22-getline/src/formisc.h 1999-04-19 15:42:15.000000000 +0900 | |
+++ procmail-3.22/src/formisc.h 2015-06-13 14:01:40.000000000 +0900 | |
@@ -17,4 +17,4 @@ | |
char* | |
skipwords P((char*start)); | |
int | |
- getline P((void)); | |
+ get_line P((void)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment