Christian Brueffer
4b2c187db5
Specify the state of my birth, similar to other entries.
2004-12-18 00:58:22 +00:00
Hartmut Brandt
674a77f864
Remove all the cleanup functions. There is no reason to free memory
...
just before exiting (especially given the number of memory leaks) -
it just costs time.
2004-12-17 13:20:19 +00:00
Ruslan Ermilov
025bfb24c4
Fix a long-standing bug when make(1) is passed the -V and
...
-f options in MAKEFLAGS environment variable, and some of
these options are also specified on the command line.
Thanks to: marcel
Reviewed by: harti
2004-12-16 19:46:50 +00:00
Hartmut Brandt
1d614caea7
Instead of dynamically allocating list heads allocated them statically
...
now that their size is only two pointers. This eliminates a lot of calls
to Lst_Init and from there to malloc together with many calls to
Lst_Destroy (in places where the list is obviously empty). This also
reduces the chance to leave a list uninitilized so we can remove more
NULL pointer checks and probably eliminates a couple of memory leaks.
2004-12-16 16:14:16 +00:00
Greg Lehey
f2d336274b
Correct the event of 17 December 1770: Ludwig van Beethoven was
...
christened. We don't know whether he was born on the same or the
previous day.
From: Die Musik in Gecshichte und Gegenwart (Bärenreiter, Kassel,
1989), 1:1509
2004-12-16 00:29:35 +00:00
Greg Lehey
d96795a5db
Correct the dates and locations relating to Ludwig van Beethoven's
...
birth:
1. Remove anachronistic "Germany". Depending on your viewpoint, he
was born in the Rheinland or Prussia.
2. Remove reference to his date of birth. It's not known, though
it's possible it was 16t or 17 December.
3. Get the date of his christening right.
2004-12-16 00:26:53 +00:00
Suleiman Souhlal
f6bbd7a8e9
If ferror is true, we must reset the error indicator.
...
Submitted by: Liam J. Foy <liamfoy@sepulcrum.org>
Approved by: grehan (mentor)
2004-12-15 06:24:57 +00:00
Niels Heinen
8a7a5b487d
Add myself to the committers' birthday calendar
...
Approved by nectar (mentor)
2004-12-13 12:22:28 +00:00
Ceri Davies
8693799f41
Bump document date before ru gets me.
2004-12-11 13:14:54 +00:00
Ceri Davies
876b0a88dd
Add a -k flag for querying whois.krnic.net (the National Internet
...
Development Agency of Korea) which hold details of IP address
allocations within Korea.
Approved by: bms
2004-12-11 13:14:07 +00:00
Hartmut Brandt
54bb820a75
Remove a list that was just used to free all variables just before exiting.
2004-12-10 11:58:34 +00:00
Hartmut Brandt
fadeed7fb8
Remove a list that used to hold all the GNodes just to be able
...
to free them just before exiting.
2004-12-10 10:32:10 +00:00
Hartmut Brandt
16fa982c70
Remove a useless list where just all command lines are stuffed onto, never
...
used and just freed at the end. The idea might have been to be able
to free all the strings, but what's the point to free just before exiting?
2004-12-10 10:13:40 +00:00
Hartmut Brandt
3cfcafb49a
Nobody actually checked the return codes from Lst_Append and Lst_Insert
...
so don't return anything.
2004-12-09 15:31:32 +00:00
Hartmut Brandt
0354c3e056
If a path element directory was never opened it is not on the list of
...
open directories so there is no need to remove it from there. This fixes
a core dump introduced by removing the run-time check from Lst_Remove.
2004-12-09 10:00:55 +00:00
Hartmut Brandt
4ec22b1196
Now that circular lists are gone remove stuff for them. Simplify
...
somewhat so that we can remove a local variable.
2004-12-08 17:48:15 +00:00
Hartmut Brandt
c81703e6a4
No caller checks the return code from Lst_Remove, so don't return one.
...
Simplify the algorithm now that circular lists are gone.
2004-12-08 17:43:43 +00:00
Hartmut Brandt
74c71bfc19
Don't check the return code from Lst_Remove. There is no way
...
that the list's first element is not on the list.
2004-12-08 16:50:14 +00:00
Hartmut Brandt
2e022816d8
Remove return value from Lst_Concat. None of the callers ever checked
...
it. Remove stuff that was needed for circular lists.
2004-12-08 16:47:19 +00:00
Hartmut Brandt
3220c0368c
Don't free the second list in Lst_Concat for LST_CONCLINK; free it
...
in the caller instead.
2004-12-08 16:28:53 +00:00
Hartmut Brandt
c76d7d5047
Get rid of the sequential access feature of the lists. This was used
...
only in a couple of places and all of them except for one were easily
converted to use Lst_First/Lst_Succ. The one place is compatibility
mode in job.c where the it was used to advance to the next command on
each invocation of JobStart. For this case add a pointer to the node to
hold the currently executed command.
2004-12-08 16:22:01 +00:00
Hartmut Brandt
db7ce92a3c
Constify the arguments to the list compare function. This temporarily
...
requires to make a copy of the filename in ReadMakefile and to duplicate
two small functions in suff.c. This hopefully will go away when everything
is constified.
Submitted by: Max Okumoto <okumoto@ucsd.edu> (partly)
2004-12-08 12:59:27 +00:00
Hartmut Brandt
5d7406afd3
Constify some calls of Buf_AddBytes.
...
Submitted by: Max Okumoto <okumoto@ucsd.edu>
2004-12-08 08:18:13 +00:00
Hartmut Brandt
cb93e26c8a
Consify the arguments to str_concat. Remove the STR_DOFREE flag for that
...
purpose and explicitely free the input string in the one place that was
calling str_concat with that flag.
Submitted by: Max Okumoto <okumoto@ucsd.edu>
2004-12-08 08:11:59 +00:00
Hartmut Brandt
bf1ead0608
Typedefs of pointers to structs are evil. Make Lst and LstNode typedef of
...
the structs itself not of pointers to them. This will simplify constification.
Checked by: diff on the object files
2004-12-07 13:49:13 +00:00
Hartmut Brandt
b82f920f8e
Constification of arguments passed to functions; no change on the
...
resulting executable.
Checked by: diff on original and new objects
Submitted by: Max Okumoto <okumoto@ucsd.edu>
2004-12-07 12:23:45 +00:00
Hartmut Brandt
644a6874f9
Make needs no circular lists so remove them from the list code.
2004-12-07 10:14:16 +00:00
Alexander Nedotsukov
59dd44d303
Fix -t option processing.
...
Partially initialized tm structure was passed into mktime(3).
Approved by: ru
2004-12-06 15:38:24 +00:00
Hartmut Brandt
a82682c493
Some constification which doesn't require code rewrites.
2004-12-06 15:20:12 +00:00
Hartmut Brandt
595e513a56
Style: fix indentation.
2004-12-06 11:30:36 +00:00
Ruslan Ermilov
4b2a3d41da
Unbreak sockstat(1) on systems without the divert protocol.
2004-12-06 09:28:05 +00:00
Hartmut Brandt
f2b0d1538d
Remove an unused macro.
2004-12-06 08:57:41 +00:00
Hartmut Brandt
45f507983f
Constify arguments to Hash_FindEntry and Hash_CreateEntry.
2004-12-06 08:56:30 +00:00
Hartmut Brandt
997206eed2
Remove extra empty lines.
2004-12-06 08:52:02 +00:00
Hartmut Brandt
491fb056d3
Style: fix indentation, prototypes for functions even in comment.
2004-12-06 08:51:34 +00:00
Ruslan Ermilov
2cfbdf89b7
Show divert(4) sockets as well.
2004-12-05 14:17:14 +00:00
Hartmut Brandt
e97977d265
Remove an extra space.
...
Submitted by: ru
2004-12-03 13:03:16 +00:00
Hartmut Brandt
a8b951bb30
Fix breakage introduced on 64-bit platforms with my last commit. Need
...
to change to size_t in a couple of other places too.
2004-12-03 12:55:57 +00:00
Hartmut Brandt
db397f6ffe
Plug a memory leak.
2004-12-03 12:07:03 +00:00
Hartmut Brandt
2d3d282892
Put macro arguments in paranthesis.
...
Submitted by: johan
2004-12-03 12:02:14 +00:00
Hartmut Brandt
b6899024a6
Make sizes to be of type size_t and correct function arguments that
...
should be Byte (as the numerous casts to Byte in the function calls show).
2004-12-03 11:59:30 +00:00
Hartmut Brandt
002c565593
Style: fix indentation, protect macro with do { } while (0).
...
Checked with: diff on object file.
2004-12-03 08:43:07 +00:00
Hartmut Brandt
b52c5e95b6
Describe the .SHELL target.
...
Reviewed by: ru
2004-12-03 08:03:11 +00:00
Hartmut Brandt
421cdafee3
Change the algorithm that matches the builtin shells from the name keyword
...
of the .SHELL target. Formerly it used to select the shell with the
longest common trailing substring, so that bash would select sh, but pocsh
would select csh. Now an exact match is required so that specifying bash
without also giving a path and the other keywords will give an error.
PR:
Submitted by:
Reviewed by: ru
Approved by:
Obtained from:
MFC after:
2004-12-03 08:02:52 +00:00
Jean-Sébastien Pédron
df12ac4fe8
Add myself to the committers' birthday calendar
...
Reviewed by: mux
2004-12-03 01:41:55 +00:00
Hartmut Brandt
743cf01795
Remove a double test for the same ptr != NULL and use the official
...
macro for this; reorder an if.
2004-12-01 17:44:04 +00:00
Hartmut Brandt
d21474cec4
Style: remove a lot of unnecessary casts, add some and spell the null
...
pointer constant as NULL.
Checked by: diff -r on the object files before and after
2004-12-01 10:29:20 +00:00
Hartmut Brandt
e6417f6fe2
Stylification: missing spaces, extra space after function names, casts
...
and the sizeof operator, missing empty lines, void casts, extra empty lines.
Checked by: diff on make *.o lst.lib/*.o
Submitted by: Max Okumoto <okumoto@soe.ucsd.edu> (partly)
2004-11-30 17:46:29 +00:00
Garrett Wollman
f14eed08c0
Use ?= with WARNS.
...
Requested by: ru
2004-11-30 16:41:40 +00:00
Hartmut Brandt
17446c050c
Constify the array of predefined shells. It turns out that we need two
...
versions of the structure definition for this: one with const char
pointers, because otherwise gcc won't let us initialize the fields with
constant strings, and one without the const, because we need to work
with the structure.
2004-11-30 15:35:51 +00:00