Added vim config instruction to not use spaces.

git-svn-id: https://proxytunnel.svn.sourceforge.net/svnroot/proxytunnel/trunk/proxytunnel@198 bc163920-b10d-0410-b2c5-a5491ca2ceef
This commit is contained in:
Dag Wieers 2008-01-22 17:12:21 +00:00
parent 074b2a0f8c
commit 688f352eb4
19 changed files with 33 additions and 2 deletions

View file

@ -137,3 +137,5 @@ int unbase64(unsigned char *out, const unsigned char *in, int maxlen)
return (len);
}
// vim:noet

View file

@ -21,3 +21,5 @@
void base64(unsigned char *out, const unsigned char *in, int len);
int unbase64(unsigned char *out, const unsigned char *in, int maxlen);
// vim:noet

View file

@ -56,3 +56,4 @@ void make_basicauth()
free( p );
}
// vim:noet

View file

@ -23,4 +23,4 @@ char basicauth[80]; /* Buffer to hold the proxies basic authentication data */
/* Functions */
void make_basicauth();
// vim:noet

View file

@ -522,3 +522,5 @@ static char *getCredentialsFromFile( const char* filename, char **user, char **p
return strdup( "Error opening password file" );
}
// vim:noet

View file

@ -71,3 +71,5 @@ void cmdline_parser_print_help( void );
void cmdline_parser_print_version( void );
#endif /* _cmdline_h */
// vim:noet

View file

@ -28,3 +28,5 @@
#ifndef _PASSWORD_LEN
# define _PASSWORD_LEN 80
#endif
// vim:noet

View file

@ -29,3 +29,5 @@ If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
#else
#define PROTO_LIST(list) ()
#endif
// vim:noet

2
io.c
View file

@ -160,3 +160,5 @@ void cpio(PTSTREAM *stream1, PTSTREAM *stream2)
}
closeall();
}
// vim:noet

2
io.h
View file

@ -20,3 +20,5 @@
/* io.h */
int readline(PTSTREAM *pts);
void cpio(PTSTREAM *stream1, PTSTREAM *stream2);
// vim:noet

View file

@ -54,3 +54,5 @@ void my_perror( char *msg )
message( "error: %s: [%d] %s\n", msg, errno, errstr );
}
}
// vim:noet

2
ntlm.c
View file

@ -482,4 +482,4 @@ void build_ntlm2_response() {
lm2digest[16 + i] = b->client_challenge[i];
}
// vim:noet

1
ntlm.h
View file

@ -109,3 +109,4 @@ typedef struct {
unsigned long data_start;
} blob;
// vim:noet

View file

@ -459,3 +459,5 @@ int main( int argc, char *argv[] )
exit( 0 );
}
// vim:noet

View file

@ -63,3 +63,4 @@ char buf[SIZE]; /* Data transfer buffer */
#define MAX( x, y ) ( ( (x)>(y) ) ? (x) : (y) )
#endif
// vim:noet

View file

@ -244,3 +244,5 @@ int stream_get_outgoing_fd(PTSTREAM *pts)
return pts->outgoing_fd;
#endif
}
// vim:noet

View file

@ -48,3 +48,5 @@ int stream_copy(PTSTREAM *pts_from, PTSTREAM *pts_to);
int stream_enable_ssl(PTSTREAM *pts);
int stream_get_incoming_fd(PTSTREAM *pts);
int stream_get_outgoing_fd(PTSTREAM *pts);
// vim:noet

View file

@ -207,3 +207,5 @@ static void handler(int s)
signo = s;
}
#endif /* HAVE_READPASSPHRASE */
// vim:noet

View file

@ -170,3 +170,5 @@ setproctitle(const char *fmt, ...)
}
#endif /* HAVE_SETPROCTITLE */
// vim:noet