Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 37434
Collapse All | Expand All

(-)poppassd.c (-5 / +3 lines)
Lines 59-65 Link Here
59
#include <ctype.h>
59
#include <ctype.h>
60
#include <strings.h>
60
#include <strings.h>
61
#include <errno.h>
61
#include <errno.h>
62
#include <varargs.h>
62
#include <stdarg.h>
63
#include <pwd.h>
63
#include <pwd.h>
64
#include <string.h>
64
#include <string.h>
65
#include <dirent.h>
65
#include <dirent.h>
Lines 90-102 Link Here
90
#define POP_SKIPASS 2
90
#define POP_SKIPASS 2
91
short int pop_state = POP_OLDPASS;
91
short int pop_state = POP_OLDPASS;
92
92
93
void WriteToClient (fmt, va_alist)
93
void WriteToClient (char *fmt, ...)
94
char *fmt;
95
va_dcl
96
{
94
{
97
	va_list ap;
95
	va_list ap;
98
	
96
	
99
	va_start (ap);
97
	va_start (ap, fmt);
100
	vfprintf (stdout, fmt, ap);
98
	vfprintf (stdout, fmt, ap);
101
	fputs ("\r\n", stdout );
99
	fputs ("\r\n", stdout );
102
	fflush (stdout);
100
	fflush (stdout);

Return to bug 37434