summaryrefslogtreecommitdiffstats
path: root/source/utils/make_printerdef.c
Commit message (Collapse)AuthorAgeFilesLines
* Added the same open()/fopen()/creat()/mmap() -> sys_XXX calls.Jeremy Allison1998-11-171-1/+1
| | | | | | | | | | Tidied up some of the mess (no other word for it). Still doesn't compile cleanly. There are calls with incorrect parameters that don't seem to be doing the right thing. This code still needs surgery :-(. Jeremy.
* Fixed problems found in lint pass over the old code by <cpeterso@microsoft.com>.Jeremy Allison1998-09-281-3/+25
| | | | | These were the problems that still existed in the 2.0 branch. Jeremy.
* Changes to test in configure if capabilities are enabled on a system.Jeremy Allison1998-09-281-2/+0
| | | | | | | | | | Changes to get Samba to compile cleanly with the IRIX compiler with the options : -fullwarn -woff 1209,1174 (the -woff options are to turn off warnings about unused function parameters and controlling loop expressions being constants). Split prototype generation as we hit a limit in IRIX nawk. Removed "." code in smbd/filename.c (yet again :-). Jeremy.
* tridge the destroyer returns!Andrew Tridgell1998-09-051-9/+9
| | | | | | | | | | | | | | | | | | | | | | prompted by the interpret_security() dead code that Jean-Francois pointed out I added a make target "finddead" that finds potentially dead (ie. unused) code. It spat out 304 function names ... I went through these are deleted many of them, making others static (finddead also reports functions that are used only in the local file). in doing this I have almost certainly deleted some useful code. I may have even prevented compilation with some compile options. I apologise. I decided it was better to get rid of this code now and add back the one or two functions that are needed than to keep all this baggage. So, if I have done a bit too much "destroying" then let me know. Keep the swearing to a minimum :) One bit I didn't do is the ubibt code. Chris, can you look at that? Heaps of unused functions there. Can they be made static?
* This is a security audit change of the main source.Jeremy Allison1998-05-121-46/+46
| | | | | | | | | | | | | | | | | | It removed all ocurrences of the following functions : sprintf strcpy strcat The replacements are slprintf, safe_strcpy and safe_strcat. It should not be possible to use code in Samba that uses sprintf, strcpy or strcat, only the safe_equivalents. Once Andrew has fixed the slprintf implementation then this code will be moved back to the 1.9.18 code stream. Jeremy.
* Changes to allow Samba to be compiled with -Wstrict-prototypesJeremy Allison1998-04-131-1/+1
| | | | | | with gcc. (Not a big change although it looks like it :-). Jeremy.
* fix core dumps on Solaris 2.5 systems found by Orn AsgeirssonHerb Lewis1998-03-111-6/+12
|
* Fixed warnings with gcc (assignments inside if statements).Jeremy Allison1998-01-231-4/+4
| | | | Jeremy.
* changes to correctly use some HP printer inf filesHerb Lewis1998-01-231-39/+146
|
* This is *not* a big change (although it looks like one).Jeremy Allison1998-01-221-1/+1
| | | | | | | This is merely updating the Copyright statements from 1997 to 1998. It's a once a year thing :-). NO OTHER CHANGES WERE MADE. Jeremy.
* fix problems with using inf files from HP for DesignJet 750C (C3195A)Herb Lewis1998-01-211-1/+4
|
* added printout of file list to stderr so you know what files you need toHerb Lewis1998-01-031-0/+4
| | | | copy to your printer$ share
* fixes to make_printerdef.c to generate a correct printers.def fileHerb Lewis1998-01-011-28/+97
| | | | changes to ipc.c to use new printers.def file
* loadparm.c : Added "veto oplock files" parameter.Jeremy Allison1997-11-171-1/+1
| | | | | | | | make_printerdef.c: Fixed warning. quotas.c: Fixed irix root errors. server.c: Fixed oplock reference count bug. smb.h: Added IS_VETO_OPLOCK_PATH(). Jeremy.
* Utility code to produce printer definition files from MS files.Jeremy Allison1997-10-281-0/+301
Part of code to support Windows 95 automated printer driver installs. Written by Jean-Francois Micouleau <Jean-Francois.Micouleau@utc.fr>.