search for: ipzero

Displaying 3 results from an estimated 3 matches for "ipzero".

Did you mean: inzero
2000 Jul 17
0
[PATCH] `smbclient -M' ignores `-p port'
...ertainly correct. > > Samba maintainers please apply. 2.0, HEAD and TNG all have this bug. > > Peter > > --- samba-2.0.x/source/client/client.c~ Mon Jul 3 01:15:21 2000 > +++ samba-2.0.x/source/client/client.c Sun Jul 16 15:33:34 2000 > @@ -2164,7 +2164,8 @@ > ip = ipzero; > if (have_ip) ip = dest_ip; > > - if (!(cli=cli_initialise(NULL)) || !cli_connect(cli, desthost, &ip)) { > + if (!(cli=cli_initialise(NULL)) || !cli_set_port(cli, port) || > + !cli_connect(cli, desthost, &ip)) { > DEBUG(0,("Connection to %s failed\n"...
2000 Jul 16
1
"smbclient -p <port>" appears to be broken in Samba 2.x
I posted this problem as a question to this list a while ago and got no reply. I submitted it as a bug, but found that "samba-bugs@samba.org", no longer accepts bug reports, even though the web page says to send them to that address. Wondering if the option had been intentionally discontinuted without updating the man page, I made a quick check of the source and found that the "-p
2000 Jul 31
0
[patch] smbmount fixes for samba-2.0.7, testers wanted!
...nt.smb daemon */ -/* WARNING! This option is incompatible with autofs/automount because - it does not close the stdout pipe back to the automount - process, which automount depends on. This will cause automount - to hang! Use with caution! */ -/* #define SMBFS_DEBUG 1 */ - extern struct in_addr ipzero; extern int DEBUGLEVEL; extern BOOL in_client; extern pstring user_socket_options; +extern fstring remote_machine; static pstring my_netbios_name; static pstring password; @@ -73,7 +67,7 @@ signal( SIGTERM, exit_parent ); if ((child_pid = fork()) < 0) { - fprintf(stderr,"cou...