| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
|
|
|
| |
process group leader, setsid() fails.
|
| |
|
|
|
|
|
| |
The name of the option is -nodes, not -node. Really minor - the option
parser on looks at the first two characters.
|
|
|
|
|
| |
This utility apparently was removed for ax25-utils 2.1.37 released
in May 1997.
|
|
|
|
|
| |
This utility apparently was removed for ax25-utils 2.1.37 released
in May 1997.
|
| |
|
|
|
|
|
| |
digi-praters sounds like Astrian entertainment hightech but is plain wrong
and digi-peater is an uncommon spelling.
|
|
|
|
|
|
| |
This means the installation of the plain ax25-tools package will no
longer pull in tons of X libraries. This is useful on VMs or resource
constrained hardware.
|
|
|
|
|
| |
This avoids lots of other packages being installed to satisfy dependencies
when installing the ax25-tools rpm.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
template. Without these packages installed everything will still build
ok just xfhdlcchpar, xfhdlcst, xfsmdiag and xfsmmixer won't be built.
In other words, these binaries are built optional and this is no error
but as show by https://bugzilla.redhat.com/show_bug.cgi?id=545272 the
behaviour is confusing and builders of an rpm probably want the whole
thing.
|
| |
|
|
|
|
| |
port). Example: This is done by "mkiss /dev/ttyUSB0 none /dev/ptmx
|
| |
|
|
|
|
|
|
|
|
|
|
| |
login -f -h <protocol> <as_user>
did not work.
login -h <protocol> -f <as_user>
did work. Imho, OpenSUSE meessed up login's getopt()...
On the other hand, we have no problems to switch the position
of arguments - as long as there's not another linux demanding
another position ;)
|
|
|
|
| |
Thanks to Bernard <f6bvp> for reporting this problem.
|
|
|
|
|
|
|
|
| |
install-exec-local hooks may be run in parallel. This may result in
the attempted installation of files into directories before they have
been created. Fixed by using install-exec-hook instead.
Reported and axgetput-only patch by Thomas Beierlein <tb@forth-ev.de>.
|
|
|
|
| |
Now just a rpmbuild -ta <foo.tar.gz> will do.
|
|
|
|
|
| |
In a world that is caught between ISO 8859-1, ISO 8859-15 and UTF-8
non-ASCII characters are a guaranteed mess, still.
|
| |
|
| |
|
|
|
|
| |
Kernel 2.0.36 and 2.2.1 are seriously out of fashion.
|
|
|
|
| |
These should be declared by unistd.h only.
|
|
|
|
| |
<errno.h> is the way to go.
|
| |
|
|
|
|
|
|
| |
Glibc as old as 2.2 provides working headers under the right name and
if not libax25 would install headers under the right name so this has
become redundant and ugly.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Keeping generated files in CVS doesn't only tend to produce large and
cluttered files it also may result in build problems due to timestamps
in the wrong order. So dump everything, update .cvsignore to ignore
these files and resolve all warnings generated by autoreconf.
From now on users of a CVS checkout should run the command
autoreconf --install --force
after having done a CVS checkout. For this to succeed automake, autoconf
and libtool will have to be installed.
|
|
|
|
|
|
| |
These probably survived because building them requires libGL, fltk and
libXi to be installed. If they're not installed a make distclean also
won't try to delete the binaries.
|
|
|
|
|
|
|
|
| |
Various socket syscalls receive a length argument that should be a
socklen_t rsp. a ptr to a socklen_t but instead int rsp. ptr to int were
being passed. While in theory this was a bug it's harmless as dangerously
large values would not be used but the issue manifested itself in a
significant number of compilation warnings.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Thanks to using the antiquated time(2) call the microsecond field of the
struct utmp being manipulated was never initialized resulting in random
values. On some 64-bit systems this also manifested itself in below
warnings.
axspawn.c: In function ‘cleanup’:
axspawn.c:1017: warning: passing argument 1 of ‘time’ from incompatible pointer type
/usr/include/time.h:186: note: expected ‘time_t *’ but argument is of type ‘int32_t *’
[...]
axspawn.c: In function ‘main’:
[...]
axspawn.c:1693: warning: passing argument 1 of ‘time’ from incompatible pointer type
/usr/include/time.h:186: note: expected ‘time_t *’ but argument is of type ‘int32_t *’
Fixed by changing it to the recommended initialization sequenze based on
gettimeofday().
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Because HZ is not a constant value anymore, we now use the
appropriate sysconf() call.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Thanks to dk2crn.
|
| |
|
|
|
|
|
| |
Syslog logging.
Bugfixes: buffer-length assurances; do never change char *foo = "bar".
|
|
|
|
|
|
|
|
|
| |
The num devices are written to stdout and could easily used
in startp scripts.
Introduced PATH_MAX for the pty name.
Kiss header for crc smack and rmnc are now supported.
write return code is now honoured.
Thanks to dk2crn for contriution.
|
| |
|
|
|
|
| |
char addr[20] was static and strcpy(addr,.argv[n]) of variable length..
|
| |
|
|
|
|
|
|
| |
if ((n = read(s, buffer + 2, 512)) == -1) in rsdwnlnk.c
if ((n = read(STDIN_FILENO, buffer + 2, 512)) == -1) in rsuplnk.c
This smashes the buffer two bytes behind..
|