~clint-fewbar/ubuntu/precise/squid3/ignore-sighup-early

« back to all changes in this revision

Viewing changes to helpers/basic_auth/mswin_sspi/valid.h

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2010-05-04 11:15:49 UTC
  • mfrom: (1.3.1 upstream)
  • mto: (20.3.1 squeeze) (21.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20100504111549-1apjh2g5sndki4te
Tags: upstream-3.1.3
ImportĀ upstreamĀ versionĀ 3.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20
20
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21
21
 * GNU General Public License for more details.
22
 
 
 
22
 
23
23
 * You should have received a copy of the GNU General Public License
24
24
 * along with this program; if not, write to the Free Software
25
25
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
85
85
#endif /* DEBUG */
86
86
#else /* __GNUC__ */
87
87
static void
88
 
debug(char *format,...) 
 
88
debug(char *format,...)
89
89
{
90
90
#ifdef DEBUG
91
91
#ifdef _SQUID_MSWIN_
92
92
    if (debug_enabled) {
93
 
        va_list args;
 
93
        va_list args;
94
94
 
95
 
        va_start(args,format);
96
 
        fprintf(stderr, "nt_auth[%d]: ",getpid());
97
 
        vfprintf(stderr, format, args);
98
 
        va_end(args);
 
95
        va_start(args,format);
 
96
        fprintf(stderr, "nt_auth[%d]: ",getpid());
 
97
        vfprintf(stderr, format, args);
 
98
        va_end(args);
99
99
    }
100
100
#endif /* _SQUID_MSWIN_ */
101
101
#endif /* DEBUG */