tdb_pack prototype mismatch in printing/printing.c

2003-03-26 Thread Waider
It appears that store_queue_struct is expecting a different version of
tdb_pack, since it's feeding an extra NULL to tdb_pack in place of the
format argument. This causes smbd to explode. (Samba HEAD, as ever)

Cheers,
Waider.
-- 
[EMAIL PROTECTED] / Chances are I'm not at home right now.


decode port_type field in enumports

2003-03-04 Thread Waider
Hi folks,

this patch against CVS HEAD provides decoding for the port_type field
when you do enumports 2 in rpcclient.

Cheers,
Waider.

Index: include/rpc_spoolss.h
===
RCS file: /cvsroot/samba/source/include/rpc_spoolss.h,v
retrieving revision 1.95
diff -a -u -r1.95 rpc_spoolss.h
--- include/rpc_spoolss.h   15 Feb 2003 23:36:18 -  1.95
+++ include/rpc_spoolss.h   4 Mar 2003 14:51:50 -
@@ -1302,6 +1302,12 @@
 }
 PORT_INFO_2;
 
+/* Port Type bits */
+#define PORT_TYPE_WRITE 0x0001
+#define PORT_TYPE_READ  0x0002
+#define PORT_TYPE_REDIRECTED0x0004
+#define PORT_TYPE_NET_ATTACHED  0x0008
+
 typedef struct spool_q_enumports
 {
uint32 name_ptr;
Index: rpcclient/cmd_spoolss.c
===
RCS file: /cvsroot/samba/source/rpcclient/cmd_spoolss.c,v
retrieving revision 1.107
diff -a -u -r1.107 cmd_spoolss.c
--- rpcclient/cmd_spoolss.c 25 Feb 2003 23:34:57 -  1.107
+++ rpcclient/cmd_spoolss.c 4 Mar 2003 14:51:56 -
@@ -396,7 +396,31 @@
rpcstr_pull(buffer, i2-description.buffer, sizeof(buffer), -1, STR_TERMINATE);
 
printf(\tDescription:\t[%s]\n, buffer);
-   printf(\tPort Type:\t[%d]\n, i2-port_type);
+printf(\tPort Type:\t );
+if ( i2-port_type ) {
+   int comma = 0; /* hack */
+   printf( [ );
+   if ( i2-port_type  PORT_TYPE_READ ) {
+   printf( Read );
+   comma = 1;
+   }
+   if ( i2-port_type  PORT_TYPE_WRITE ) {
+   printf( %sWrite, comma ? ,  :  );
+   comma = 1;
+   }
+   /* These two have slightly different interpretations
+   on 95/98/ME but I'm disregarding that for now */
+   if ( i2-port_type  PORT_TYPE_REDIRECTED ) {
+   printf( %sRedirected, comma ? ,  :  );
+   comma = 1;
+   }
+   if ( i2-port_type  PORT_TYPE_NET_ATTACHED ) {
+   printf( %sNet-Attached, comma ? ,  :  );
+   }
+   printf( ]\n );
+} else {
+   printf( [Unset]\n );
+}
printf(\tReserved:\t[%d]\n, i2-reserved);
printf(\n);
 }
-- 
[EMAIL PROTECTED] / Yes, it /is/ very personal of me.

It's a poor workman who blames his tools, unless they're WINTEL-based.
- Conor Bob


Re: [Samba] Dos To Unix?

2003-01-13 Thread Waider
According to Joel Hammer:
 
 No, as far as I know.
 Joel

Actually, it's probably possible with some futzing with the magic script
paramter, but it'd be pretty specific. 

Cheers,
Waider.
-- 
[EMAIL PROTECTED] / Chances are I'm not at home right now.
-- 
To unsubscribe from this list go to the following URL and read the
instructions:  http://lists.samba.org/mailman/listinfo/samba