Displaying 1 result from an estimated 1 matches for "printerkey".
2003 Feb 21
1
PATCH: downloading drivers from Solaris [was Re: So SAMBA no longer ...]
...diff -u -B -b -r1.115.2.224 srv_spoolss_nt.c
--- source/rpc_server/srv_spoolss_nt.c 13 Feb 2003 19:40:21 -0000 1.115.2.224
+++ source/rpc_server/srv_spoolss_nt.c 21 Feb 2003 00:15:05 -0000
@@ -7876,12 +7876,22 @@
uint16 enumkeys[ENUMERATED_KEY_SIZE+1];
char* ptr = NULL;
int i;
- char *PrinterKey = "PrinterDriverData";
+ fstring PrinterKey;
+ UNISTR2 uni_keys;
+ int enum_key_len;
DEBUG(4,("_spoolss_enumprinterkey\n"));
unistr2_to_dos(key, &q_u->key, sizeof(key) - 1);
+ ZERO_STRUCTP(PrinterKey);
+ fstrcpy( PrinterKey, "PrinterDriverData" );
+
+...