diff options
author | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2010-02-11 19:40:33 +0000 |
---|---|---|
committer | Philip M. Gollucci <pgollucci@FreeBSD.org> | 2010-02-11 19:40:33 +0000 |
commit | 0ec10e2e24e2d23e2304ea38346290feacaa9ea0 (patch) | |
tree | 71d5db8afa7cd660cb6c3833b6674ee36af805b7 /cad/spice/files/patch-src_lib_fte_outitf_c | |
parent | - add USE_MYSQL=yes (diff) |
-Clean some warnings by using string.h instead of strings.h
Applied several patches from this website:
http://newton.ex.ac.uk/teaching/CDHW/Electronics2/userguide/secD.html
specifically fixes for:
- Where command causes crashes
- Recognition of scale factors in arbitrary source
- Current Controlled Switch in subckt, parsing error
- Noise analysis bug
- Save segmentation faults
- BSIM1 model xpart parameter random
- Tran analysis default TSTEP
PR: ports/143727
Submitted by: "Pedro F. Giffuni" <giffunip@tutopia.com>
Diffstat (limited to 'cad/spice/files/patch-src_lib_fte_outitf_c')
-rw-r--r-- | cad/spice/files/patch-src_lib_fte_outitf_c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cad/spice/files/patch-src_lib_fte_outitf_c b/cad/spice/files/patch-src_lib_fte_outitf_c new file mode 100644 index 000000000000..dda84bc00665 --- /dev/null +++ b/cad/spice/files/patch-src_lib_fte_outitf_c @@ -0,0 +1,11 @@ +--- src/lib/fte/outitf.c.orig 2010-02-09 15:49:01.000000000 +0000 ++++ src/lib/fte/outitf.c 2010-02-09 15:49:55.000000000 +0000 +@@ -353,7 +353,7 @@ + + data->name = copy(name); + +- unique = devname; ++ unique = copy(devname); + INPinsert(&unique, (INPtables *) ft_curckt->ci_symtab); + data->specName = unique; + |