summaryrefslogtreecommitdiffstats
path: root/axutils.c
Commit message (Collapse)AuthorAgeFilesLines
* cosmetic changesThomas Osterried2011-01-161-7/+6
|
* fix in ax25_aton() and in ax25_aton_arglist() - very old bug:Thomas Osterried2010-09-161-2/+2
| | | | | | | | | | | | | Stored only 7 of max 8 (AX25_MAX_DIGIS) digipeaters from ascii string to the struct full_sockaddr_ax25 *fsap. Why? int n = 0; do { ... } while (n < AX25_MAX_DIGIS && *bp); Everyone should say "oh yes, n = 0; -> do ... while n < MAX_DIGIS". But: in the loop n is increased by one. Thus only 7 of 8 arguments hav been copied. do { ... } while (n <= AX25_MAX_DIGIS && *bp); fixes this issue.
* ax25_ntoa: Don't emit SSID suffix if the SSID is zero.Ralf Baechle2009-09-101-6/+9
| | | | From: Matti Aarnio OH2MQK <matti.aarnio@zmailer.org>
* Move all header files to be installed to new subdirectory netax25.Ralf Baechle2009-06-201-10/+1
|
* Fix pile of warnings about differing signedness. One of them looksRalf Baechle2007-01-231-3/+6
| | | | like a real buglet for some architectures.
* Fix warning about lost const pointer attribute.Ralf Baechle2007-01-231-1/+1
|
* Import libax25 0.0.5 from tarballlibax25-0.0.5Ralf Baechle1999-07-081-2/+2
|
* Import ax25-lib 0.0.3 from tarballax25-lib-0.0.3Ralf Baechle1999-04-301-8/+8
|
* Import ax25-lib 0.0.2 from tarballax25-lib-0.0.2Ralf Baechle1999-04-211-11/+21
|
* Import ax25-lib 0.0.1 from tarballax25-lib-0.0.1Ralf Baechle1999-04-101-0/+321