Displaying 2 results from an estimated 2 matches for "unlen".
Did you mean:
inlen
2015 Jun 02
2
Call for testing: OpenSSH 6.9
On Mon, Jun 01, 2015 at 03:30:38PM +0200, Corinna Vinschen wrote:
> Hi,
>
> On May 29 17:12, Damien Miller wrote:
> > Hi,
> >
> > OpenSSH 6.9 is almost ready for release, so we would appreciate testing
> > on as many platforms and systems as possible. This release contains
> > some substantial new features and a number of bugfixes.
>
> I tested git
2002 Nov 29
0
libsmbclient problem
...gt;
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include "libsmbclient.h"
static void auth_func( char const* server,
char const* share,
char* workgroup, int wglen,
char* username, int unlen,
char* password, int pwlen ) {
#if 1
printf( "need authentication: smb://%s/%s\n", server, share );
#endif
if ( workgroup[0] != '\0' ) {
memset( workgroup, '\0', wglen );
snprintf( workgroup, wglen-1, "%s", "RATNET"...