search for: print_generic

Displaying 20 results from an estimated 32 matches for "print_generic".

2003 Jan 30
1
not enough charcters available in %J or confusing blanks?
...te Jobname as some Windows Applications (example: Ultraedit) send it: 1. (completely failed): Jobname in Windows: "C:\Dokumente und Einstellungen\Administrator\Eigene Dateien\Neu Textdatei.txt" Jobname in %J: "C:\Dokumente und Einstellungen\" [2003/01/30 01:05:12, 3] printing/print_generic.c:print_run_command(88) Running the command `( /pdfcreate.sh smbprn.000175.ChIgbF ~root \\\\linux\\root tb2 192.168.0.7 "C:\Dokumente und Einstellungen\" ) &' gave 2 2.(okay): Jobname in Windows: "C:\Programme\Neu Textdatei.txt" Jobname in %J: "C:\Programme\Neu...
2002 Aug 05
1
Problems compiling on QNX
Hi All, Im a newbie here, and im sorry if im repeating the question. Im trying to compile samba 2.2.5 on QNX RTOS 6.2.0 x86pc. I am getting the following error. Compiling printing/print_generic.c Compiling printing/lpq_parse.c Compiling printing/load.c Compiling profile/profile.c profile/profile.c: In function `profile_setup': profile/profile.c:93: storage size of `shm_ds' isn't known profile/profile.c:117: `SHM_RDONLY' undeclared (first use in this function) profile/profi...
2008 Nov 24
4
Print only server
...er is installed and opened I get a "printer on server Access denied, unable to connect." I can still print just fine, but I cannot list jobs, pause printing, or purge documents. I have turned up the log level to 3 and I can't seem to locate an error: [2008/11/24 10:29:16, 3] printing/print_generic.c:print_run_command(69) Running the command `lpq -P'techlaser'' gave 0 [2008/11/24 10:29:16, 3] printing/printing.c:print_queue_update_internal(1152) print_queue_update_internal: 0 jobs in queue for techlaser That's in the main smbd log, however in the clients log I see: [2008...
2002 Jun 21
1
Samba 2.2.5 and srv_spoolss_nt error
...7 00 00 00 00 00 00 00 63 1C 13 3D .. ..g... ....c..= [2002/06/21 13:31:01, 4] lib/util.c:dump_data(1537) [010] 66 0B 00 00 f... [2002/06/21 13:31:01, 4] rpc_server/srv_spoolss_nt.c:get_printer_snum(362) short name:preto [2002/06/21 13:31:01, 3] printing/print_generic.c:print_run_command(88) Running the command `/usr/bin/lprm -Ppreto 183' gave 0 [2002/06/21 13:31:01, 3] printing/print_generic.c:print_run_command(88) Running the command `/usr/bin/lpq -Ppreto' gave 0 [2002/06/21 13:31:01, 3] printing/printing.c:print_queue_update(416) 5 jobs in queu...
2004 Sep 20
1
print command=... not longer working after update
...fore the update, printing to the pdfprinter worked, after I see the following in the logs: --- [2004/09/20 23:00:15, 8] printing/nt_printing.c:unpack_devicemode(2368) with a private section of 708 bytes lpr: unable to print file: server-error-service-unavailable [2004/09/20 23:00:15, 3] printing/print_generic.c:print_run_command(84) Running the command `lpr -r -P'pdfprinter' smbprn.00000011.ljYgDh' gave 1 --- The pdfprinter-section has not changed(apart from printing=...): --- [pdfprinter] comment = Ausdrucken in PDF-Dateien path = /var/spool/samba printable = yes print command = /usr/l...
2013 Jul 09
5
[Bug 2127] New: incorrectness of do_print_resource_record()
...if (errno == ENOENT) 1307 return 0; 1308 perror(fname); 1309 exit(1); 1310 } 1311 public = key_load_public(fname, &comment); 1312 if (public != NULL) { 1313 export_dns_rr(hname, public, stdout, print_generic); 1314 key_free(public); 1315 xfree(comment); 1316 return 1; 1317 } 1318 if (comment) 1319 xfree(comment); 1320 1321 printf("failed to read v2 public key from %s.\n", fname); 1322 exit(1); 132...
2004 Dec 09
2
printing problem:Error = No space left on device
...:18, 4] printing/nt_printing.c:print_access_check(4946) access check was SUCCESS [2004/12/09 11:44:18, 3] printing/printing.c:print_cache_expired(1734) print cache expired for queue acctspr4 (last_qscan_time = 1102552797, time now = 1102553058, qcachetime = 10) [2004/12/09 11:44:18, 3] printing/print_generic.c:print_run_command(84) Running the command `lpstat -oacctspr4' gave 0 [2004/12/09 11:44:18, 3] printing/printing.c:print_queue_update(1024) 0 jobs in queue for acctspr4 [2004/12/09 11:44:19, 0] printing/printing.c:allocate_print_jobid(1843) allocate_print_jobid: failed to allocate a prin...
2002 Jun 18
2
Print problem
Hi, I have a FreeBSD 4.1.1-RELEASE and samba-2.2.4 installed in my server, I have a printer configured and working through samba. My problem is, when I reboot my server, my Windows 2000 with service pack 2, can't print anymore, when I sent a printer job, there is no error, but nothing appear on printer, the other shares area ok, and I can get files from this shares. Then I restart the
2012 Jul 28
1
[PATCH] ssh-keygen: support public key import/export using SubjectPublicKeyInfo
...w_passphrase diff --git a/ssh-keygen.c b/ssh-keygen.c index 5fcd3a1..072c49a 100644 --- a/ssh-keygen.c +++ b/ssh-keygen.c @@ -137,7 +137,8 @@ int convert_from = 0; enum { FMT_RFC4716, FMT_PKCS8, - FMT_PEM + FMT_PEM, + FMT_SUBJECTINFO } convert_format = FMT_RFC4716; int print_public = 0; int print_generic = 0; @@ -330,6 +331,27 @@ do_convert_to_pem(Key *k) } static void +do_convert_to_subjectinfo(Key *k) +{ + switch (key_type_plain(k->type)) { + case KEY_RSA: + if (!PEM_write_RSA_PUBKEY(stdout, k->rsa)) + fatal("PEM_write_RSAPublicKey failed"); + break; +#if notyet /* OpenSSH...
2007 Jul 21
0
compiling samba 2.2.12 on Solaris (x86)
...brlock.o locking/posix.o passdb/passdb.o passdb/secrets.o passdb/ pass_check.o passdb/smbpassfile.o passdb/machine_sid.o passdb/ pdb_smbpasswd.o passdb/pampass.o passdb/pdb_tdb.o passdb/pdb_ldap.o passdb/pdb_nisplus.o printing/pcap.o printing/print_svid.o printing/ print_cups.o printing/print_generic.o printing/lpq_parse.o printing/ load.o profile/profile.o lib/charcnv.o lib/charset.o lib/debug.o lib/ fault.o lib/getsmbpass.o lib/interface.o lib/kanji.o lib/md4.o lib/ interfaces.o lib/pidfile.o lib/replace.o lib/signal.o lib/system.o lib/sendfile.o lib/time.o lib/ufc.o lib/genrand.o l...
2005 Mar 29
1
Problem with pdf printing
Hello, I'm hoping someone can help me. I have several pdf printers set up and when I print to them samba becomes unstable and several errors are dumped to the log. These pdf printers were working when I was using version 3.0.6. When I went to a newer version of samba the queue would not clear on the windows side and no errors were logged. Yesterday I upgraded to version 3.0.13-1 and the
2012 Sep 09
2
Patch for ssh-keygen to allow conversion of public key to openssh format
...1-lano/scard diff -u openssh-6.1p1/ssh-keygen.c openssh-6.1p1-lano/ssh-keygen.c --- openssh-6.1p1/ssh-keygen.c 2012-07-31 04:20:44.000000000 +0200 +++ openssh-6.1p1-lano/ssh-keygen.c 2012-09-07 09:26:01.000000000 +0200 @@ -141,6 +141,7 @@ } convert_format = FMT_RFC4716; int print_public = 0; int print_generic = 0; +int read_public_only = 0; char *key_type_name = NULL; @@ -240,6 +241,13 @@ char *pass; Key *prv; + if (read_public_only) { + Key *pub; + + pub = key_load_public(filename, NULL); + return pub; + } + prv = key_load_private(filena...
2006 Jul 02
1
snprintf.c:(.text+0x14): undefined reference to `VA_COPY'
...o locking/brlock.o locking/posix.o passdb/passdb.o passdb/secrets.o passdb/pass_check.o passdb/smbpassfile.o passdb/machine_sid.o passdb/pdb_smbpasswd.o passdb/pampass.o passdb/pdb_tdb.o passdb/pdb_ldap.o passdb/pdb_nisplus.o printing/pcap.o printing/print_svid.o printing/print_cups.o printing/print_generic.o printing/lpq_parse.o printing/load.o profile/profile.o lib/charcnv.o lib/charset.o lib/debug.o lib/fault.o lib/getsmbpass.o lib/interface.o lib/kanji.o lib/md4.o lib/interfaces.o lib/pidfile.o lib/replace.o lib/signal.o lib/system.o lib/sendfile.o lib/time.o lib/ufc.o lib/genrand.o lib/usern...
2003 Oct 28
4
Failed to compile Samba with SSL
...smbpassfile.c Compiling passdb/machine_sid.c Compiling passdb/pdb_smbpasswd.c Compiling passdb/pampass.c Compiling passdb/pdb_tdb.c Compiling passdb/pdb_ldap.c Compiling passdb/pdb_nisplus.c Compiling printing/pcap.c Compiling printing/print_svid.c Compiling printing/print_cups.c Compiling printing/print_generic.c Compiling printing/lpq_parse.c Compiling printing/load.c Compiling profile/profile.c Compiling lib/charcnv.c Compiling lib/charset.c Compiling lib/debug.c Compiling lib/fault.c Compiling lib/getsmbpass.c Compiling lib/interface.c Compiling lib/kanji.c Compiling lib/md4.c Compiling lib/interfaces....
2003 May 14
1
[cups.general] Re: windows printer queue failure
Christoph Litauer <litauer@uni-koblenz.de> wrote on CUPS digest: > Message: 6 > From: Christoph Litauer <litauer@uni-koblenz.de> > Date: Wed, 14 May 2003 17:45:49 +0200 > Organization: Easy Software Products > To: cups@easysw.com > Subject: [cups.general] Re: [Samba] windows printer queue failure > Reply-To: cups@easysw.com > > Christoph Litauer wrote: >
2003 Jan 16
1
RE: How do I get the @#$$% job name to show instead of smbprn.yad a.yada?
> -----Original Message----- > From: Joel Hammer [mailto:Joel@HammersHome.com] > Sent: Wednesday, January 15, 2003 6:57 PM > To: Van Sickler, Jim; samba@lists.samba.org > Subject: Re: [Samba] How do I get the @#$$% job name to show > instead of > smbprn.yada.ya da? > > > If the file name is right in /tmp/J, then it looks like samba > is working ok. > > I
2002 May 27
1
samba 2.2.4 bugs
...smbpassfile.c Compiling passdb/machine_sid.c Compiling passdb/pdb_smbpasswd.c Compiling passdb/pampass.c Compiling passdb/pdb_tdb.c Compiling passdb/pdb_ldap.c Compiling passdb/pdb_nisplus.c Compiling printing/pcap.c Compiling printing/print_svid.c Compiling printing/print_cups.c Compiling printing/print_generic.c Compiling printing/lpq_parse.c Compiling printing/load.c Compiling profile/profile.c Compiling lib/charcnv.c Compiling lib/charset.c Compiling lib/debug.c Compiling lib/fault.c Compiling lib/getsmbpass.c Compiling lib/interface.c Compiling lib/kanji.c cc: Warning: lib/kanji.c, line 1252: In this...
2006 Nov 10
0
libsmb/cliconnect.o build/build/krb5/lib/libcom_err.so.3
...til_builtin.o passdb/pdb_compat.o passdb/util_unixsids.o passdb/lookup_sid.o passdb/login_cache.o passdb/pdb_ldap.o passdb/pdb_nds.o passdb/pdb_smbpasswd.o passdb/pdb_tdb.o lib/account_pol.o lib/privileges.o printing/pcap.o printing/print_svid.o printing/print_aix.o printing/print_cups.o printing/print_generic.o printing/lpq_parse.o printing/load.o printing/print_iprint.o profile/profile.o lib/version.o lib/charcnv.o lib/debug.o lib/fault.o lib/getsmbpass.o lib/interface.o lib/md4.o lib/interfaces.o lib/pidfile.o lib/replace.o lib/replace1.o lib/repdir.o lib/timegm.o lib/signal.o lib/system.o lib/sen...
2006 Dec 18
4
Accessing Samba Shares from Windows
Hello, We are using machines with Solaris and Windows XP. The XP machines are joined in a domain(windows 2003) and the Solaris machines are not joined to any domain. With Samba 2.2.8a running on Solaris 9 there are no problems to access them form Windows XP. We are authenticated by DC. On other machines we have Solaris 10 with Samba 3.0.21b and here we are NOT authenticated anymore by DC. So we
2007 May 03
0
Problem of displying contents of shares
...c \ smbd/notify_hash.c smbd/srvstr.c smbd/oplock_linux.c smbd/notify_kernel.c \ smbd/vfs-wrap.c smbd/posix_acls.c smbd/msdfs.c smbd/dfree.c \ smbd/lanman.c smbd/pipes.c smbd/statvfs.c smbd/ntquotas.c smbd/server.c SRC_PRINT=printing/printing.c printing/pcap.c printing/nt_printing.c \ printing/print_generic.c printing/printing_db.c printing/load.c printing/notify.c \ printing/lpq_parse.c printing/printfsp.c SRC_LIB_SMBD = lib/events.c lib/account_pol.c lib/access.c lib/sysacls.c lib/sendfile.c \ lib/clobber.c lib/fsusage.c lib/privileges.c lib/bitmap.c \ lib/util_nscd.c lib/server_mutex.c lib/sy...