search for: conn_options

Displaying 8 results from an estimated 8 matches for "conn_options".

1999 Sep 17
1
Compiling with smbmount option
We have downloaded the samba 2.0.5a source from net and tried to compile with the smbmount option, which is what we need for mounting. The following wor " ----------- client/smbmount.c: In function `send_fs_socket` : client/smbmount.c:295: storage size of `conn_options` isn't known client/smbmount.c:314: `SMB_CASE_DEFAULT` Undeclared (first use this function) client/smbmount.c:325: `SMB_IOC_NEWCONN` Undeclared (first use this function) Please suggest me how I should proceed with the compilation. thanx in advance --- GBS
2000 Jul 31
0
[patch] smbmount fixes for samba-2.0.7, testers wanted!
...return; } } @@ -298,9 +292,9 @@ while (1) { if ((fd = open(mount_point, O_RDONLY)) < 0) { - fprintf(stderr, "mount.smbfs: can't open %s\n", mount_point); + DEBUG(0,("mount.smbfs: can't open %s\n", mount_point)); break; - } + } conn_options.fd = c->fd; conn_options.protocol = c->protocol; @@ -317,7 +311,8 @@ res = ioctl(fd, SMB_IOC_NEWCONN, &conn_options); if (res != 0) { - fprintf(stderr, "mount.smbfs: ioctl failed, res=%d\n", res); + DEBUG(0,("mount.smbfs: ioctl failed, res=%d\n", res));...
1999 Jul 26
0
"smbmount" and Linux kernel-2.0.37
...`CASE_LOWER' include/smb.h:1498: previous declaration of `CASE_LOWER' /usr/include/linux/smb.h:95: conflicting types for `CASE_UPPER' include/smb.h:1498: previous declaration of `CASE_UPPER' client/smbmount.c: In function `send_fs_socket': client/smbmount.c:295: storage size of `conn_options' isn't known client/smbmount.c:314: `SMB_CASE_DEFAULT' undeclared (first use this function) client/smbmount.c:314: (Each undeclared identifier is reported only once client/smbmount.c:314: for each function it appears in.) client/smbmount.c:325: `SMB_IOC_NEWCONN' undeclared (first us...
2007 Aug 29
11
Non-Erubis Templates
Trunk Issue: Because of the use of ''autoload'', template handlers other than Erubis are not loaded automatically (Haml, XMLBuilder). Either this should be fixed, or the documentation should be updated to instruct people how to use non-Erb template engines. Apparently the solution is to do something like this in merb_init.rb: ::Merb::AbstractController.register_engine
2000 Apr 03
2
problem compiling 2.0.6 --with-smbmount
...g up to smbmount.c where the errors begin. They are about 180 lines of warnings about redefinitions from header files, then about 40 lines of conflicting types errors. The final errors before it bombs are client/smbmount.c: In function `send_fs_socket': client/smbmount.c:296: storage size of `conn_options' isn't known client/smbmount.c:308: `SMB_CASE_DEFAULT' undeclared client/smbmount.c:319: `SMB_IOC_NEWCONN' undeclared There is a 2.2.2 kernel on this machine also, and I checked and the link from /usr/include/linux does point to the directory with the correct header files for the r...
1999 Oct 13
2
Samba 2.0.6pre1 released
I've just released a snapshot of 2.0.6 in the alpha directory on samba.org. This is intended for testing to make sure some of the recent changes work well on a wider range of sites. I have also built a RedHat Linux 6.X RPM and put it in the same dircetory. If you are not running a mission critical site then we would appreciate feedback on this snapshot. If you have reported a bug in Samba
1999 Sep 29
0
building on Red Hat 5.2
...' /usr/include/netinet/in.h:204: previous declaration of `ntohl' /usr/include/asm/byteorder.h:24: conflicting types for `htonl' /usr/include/netinet/in.h:206: previous declaration of `htonl' client/smbmount.c: In function `send_fs_socket': client/smbmount.c:295: storage size of `conn_options' isn't known client/smbmount.c:314: `SMB_CASE_DEFAULT' undeclared (first use this function) client/smbmount.c:314: (Each undeclared identifier is reported only once client/smbmount.c:314: for each function it appears in.) client/smbmount.c:325: `SMB_IOC_NEWCONN' undeclared (first us...
1998 Sep 04
0
Linux SMB Mount utils patch
...urce/smbmount.c --- samba-1.9.18p10-orig/source/smbmount.c Tue May 12 15:52:51 1998 +++ samba-1.9.18p10/source/smbmount.c Thu Sep 3 12:54:45 1998 @@ -30,7 +30,7 @@ #endif #include "includes.h" -#include <linux/smb_fs.h> +#include "smb_fs.h" static struct smb_conn_opt conn_options; #ifndef REGISTER diff -urN samba-1.9.18p10-orig/source/smbumount.c samba-1.9.18p10/source/smbumount.c --- samba-1.9.18p10-orig/source/smbumount.c Mon Jun 15 10:32:32 1998 +++ samba-1.9.18p10/source/smbumount.c Thu Sep 3 12:54:45 1998 @@ -28,10 +28,10 @@ #include <mntent.h> #include &...