Commit Graph

3556 Commits

Author SHA1 Message Date
jwise
a974606cce Add a flag -r' synonymous to -d' for compatibility with X/OPEN at. 1999-05-22 05:05:11 +00:00
jwise
880d4cd6bf Note that asa(1) conforms to X/Open Commands and Utilities, Issue 5,
in addition to POSIX.2
1999-05-22 04:54:40 +00:00
matthias
3f1104fb18 ftp_login would only return success for proxy connections after the last
change. Fix this by setting rval at the right place.
1999-05-20 14:08:12 +00:00
mrg
681f17b9d0 fix my fix for PR 227. fixes PR 7444. 1999-05-19 12:39:10 +00:00
tron
6dac1f6a24 - Resolve conflicts from import.
- Fix compilation problems.
- Use "whois.internic.net" as default server for backward compatibility.
- Reformat manual page.
1999-05-18 22:36:36 +00:00
lukem
dedd2f772c only enable editing by default if stdin is a tty.
noticed by Onno van der Linden <onno@simplex.nl>
1999-05-17 04:26:45 +00:00
jtk
51eba84c2c fix defect where specifying channels would also specify the same string
as the control device (missing 'break')
1999-05-17 02:03:36 +00:00
augustss
ff6d760db9 GC an unused #define. 1999-05-16 19:42:03 +00:00
christos
32d3ded9b3 Fix serious bug with string overruns that caused error to coredump randomly
on NetBSD, and each time on other OS's. Also 0 -> NULL or 0 -> '\0' where
appropriate.
1999-05-15 19:05:13 +00:00
sommerfeld
fcfb860733 Don't assume isspace(0) == 1 1999-05-15 18:46:27 +00:00
lukem
4494ebf448 parse http:// urls (and the $http_proxy variable) for [user:[pass]@]
elements, which are used for the initial authentication attempt (if
requested by the server).  in the case of $http_proxy, use the values
for proxy authentication.
1999-05-12 11:16:43 +00:00
lukem
566466ff97 update copyright 1999-05-12 11:06:00 +00:00
augustss
63541a8c9d Sync with libusb. 1999-05-12 00:38:20 +00:00
augustss
d2db1be09a Update for new libusb. 1999-05-12 00:05:11 +00:00
augustss
9e0a31a316 Xref usb(3). 1999-05-11 21:03:58 +00:00
augustss
18f11488db Make USB HID processing into a library. 1999-05-11 21:02:24 +00:00
augustss
f0956be346 Updates from Soren S. Jorvang <soren@t.dk> 1999-05-08 14:56:21 +00:00
wrstuden
ad4097b67b Generate a makefile which is cross-crunching compatabile:
1) Include bsd.sys.mk so we pick up DESTDIR changes to fine .h files.
2) Only set STRIP if it's unset.
3) Generate .cro files rather than .lo files. .lo now is used for "local
	objects" - obj's for the host machine not the target machine.
1999-05-06 18:40:39 +00:00
mycroft
8a57f79533 +hupcl -clocal in windows. 1999-05-06 07:28:51 +00:00
lukem
eef2152360 * fix ftp_login() so that -a always logs in anonymously, even if a
.netrc entry exists for the host with a valid user. noted by
  Frederick Bruckman <fb@enteract.com> in [bin/7477]
* fix a minor memory leak associated with calling ruserpass() with
  an empty user, password, or account.
1999-05-05 16:04:58 +00:00
lukem
f3e5b2a6c6 clarify what uses gate-ftp mode. suggested by simonb 1999-05-04 14:16:15 +00:00
lukem
25bacdd4ea print the "xxx bare linefeeds" message after the progressmeter. noted by dan@ 1999-05-04 14:12:37 +00:00
christos
f53f008dfb More cosmetics in the usage message... 1999-05-03 15:45:01 +00:00
christos
5cb75fd417 Now that we use cc -E, -U__GNUC__ to avoid gnu extensions. Nuke the
__attribute__ and __extension__ workarounds.
Our invariant is: No gcc extensions if __GNUC__ is not defined, so lint
should not be playing around trying to pretend it is gcc.
1999-05-03 15:23:27 +00:00
christos
94df9ca047 Define USE_PGRP so that we send signals to our job's process group instead
of only pid.
1999-05-03 12:01:14 +00:00
christos
130a3bae01 killpg(pgrp, sig) == kill(-pgrp, sig) in the sysv case. 1999-05-03 09:49:55 +00:00
thorpej
4c03a95577 Adjust for cwdinfo changes. 1999-05-02 22:50:19 +00:00
kleink
5c1e52ca24 Fix spelling of Gauss' fist name. 1999-05-02 18:41:41 +00:00
kleink
3ea864fcc0 Bring $PATH information in sync with _PATH_DEFPATH. 1999-05-02 18:35:30 +00:00
christos
6cb04bb5a3 dest_realm is used uninitialized! How did this ever work? 1999-04-30 15:44:21 +00:00
simonb
bf92a11622 Add '-h' to synopsis - from Nathan Williams. 1999-04-30 00:52:58 +00:00
lukem
3d538e05b6 also install as `sysstat'.
rationale: `nfsstat' is not `nfstat', and
other systems have a `sysstat' but not a `systat'.
1999-04-29 15:00:21 +00:00
christos
e782f12df1 Deal with gcc __extension__({ }). We assume that it returns a value 0, and
we prepend a /*NOSTRICT*/ comment to avoid constant in conditional context
warning.
1999-04-29 12:40:39 +00:00
thorpej
c11fe1ae79 Print SYN,ACK retransmission statistics. 1999-04-29 03:58:27 +00:00
simonb
d8b807ed6d Add 'h' to optstring. Fixes PR 7492 from Tom Trebisky. 1999-04-29 02:23:58 +00:00
lukem
f55d4712e3 * make parsing of ftp:// urls more RFC 1738 compliant;
- the path is split on `/', and each directory is CWD-ed into separately.
      (from [standards/7484] by Alan Barrett <apb@iafrica.com>)
    - support a trailing `;type=X' suffix, where X is a,i, or d.  (d isn't
      implemented, but it is recognised)
    - the only non-compliant behaviour is that empty directories sections
      (e.g `//') aren't run as `CWD ' - as a lot of ftpds don't like that.
      Instead, treat this as a no-op.
* don't support globbing for ftp urls, since that's technically not
  RFC compliant.
* fix a couple of man-page nits
1999-04-28 13:35:40 +00:00
veego
635cf4e57c It was a bad idea to call a function 'beep'.
Rename it to msg_beep to avoid conflicts with the new curses.h.
1999-04-25 09:10:07 +00:00
ross
c28735c5a8 Kill incorrect const in previous. 1999-04-24 23:54:56 +00:00
ross
ef4ee3d458 Functional LP64 and type sanity fixes. 1999-04-24 23:36:36 +00:00
kleink
6bfc84fa5c Harmless signed/unsigned botch. 1999-04-23 14:43:05 +00:00
mrg
b30d0fe7ba use "cc -E" not cpp directly. this allows lint(1) to be unaware of any
machine-dependant defines that cc(1) may normally define, and also
means that the mips ports work again.
1999-04-22 04:40:58 +00:00
simonb
8ac2197100 Add an __RCSID. 1999-04-22 03:40:46 +00:00
augustss
dc975a385b Dump more HID info. 1999-04-21 17:41:08 +00:00
augustss
f52e3c039b Handle devices with a report id correctly. 1999-04-21 16:23:14 +00:00
mrg
d18c4ee21d use mkstemp 1999-04-20 13:53:53 +00:00
mrg
eb6ee238a9 use mkdtemp not mktemp/mkdir. 1999-04-20 13:52:36 +00:00
mrg
7ef0b55f16 use mkstemp. 1999-04-20 08:05:51 +00:00
mrg
c08b0cf381 check some more syscall return values. use mkstemp. 1999-04-20 07:53:02 +00:00
mrg
525cc80c04 use mkstemp 1999-04-20 07:24:49 +00:00
simonb
9bdbe15263 Don't frob the interals of a WINDOW*, use the getmaxy() macro. 1999-04-18 03:29:18 +00:00