Ļ62225 251 232 496 163 163 239 170 328 1868 117 164 260 237 148 167 150 151 128 246 132 344 204 160 163 123 141 146 878 159 152 116 241 202 281 375 139 118 394 168 246 159 123 161 185 118 101 129 225 116 176 212 157 152 146 107 144 132 239 268 255 127 111 121 119 224 150 149 105 105 233 154 115 150 141 193 219 134 115 131 124 136 249 171 219 147 148 142 288 319 326 159 120 194 140 120 168 118 152 131 162 133 147 190 192 229 130 144 151 212 125 206 130 131 159 381 130 146 151 143 148 151 118 134 118 187 149 153 156 162 142 142 154 286 105 124 215 124 234 210 114 317 207 140 371 341 252 406 459 262 475 118 133 179 117 636 225 118 130 203 130 199 148 132 142 160 235 278 2434 228 149 159 186 137 189 134 118 125 122 121 148 149 140 132 135 352 231 371 231 272 220 124 570 198 144 131 133 461 163 442 655 116 315 278 356 258 151 182 171 173 169 342 161 240 163 151 129 363 144 193 151 203 162 130 173 137 273 238 181 295 129 324 235 158 112 272 239 325 323 159 237 249 177 164 145 138 286 334 220 165 129 157 143 K 10 svn:author V 5 peter K 8 svn:date V 27 2000-06-28T22:53:35.000000Z K 7 svn:log V 137 Add device_identify methods so that we do not need the hint.sc.0.at=isa and hint.vga.0.at=isa hints in order for these to probe/attach. END K 10 svn:author V 3 imp K 8 svn:date V 27 2000-06-29T00:34:54.000000Z K 7 svn:log V 403 Added a dire sounding note about how crypto is required to build the system. Well, not really required if you know what you are doing, but there's enough people that don't fit into this class that are getting burned now that we need to say it is required. The actual message says that one should treat it as if it was required to try to be weasilly for the nitpickers amoung us :-)Killed by signal 2. END K 10 svn:author V 2 bp K 8 svn:date V 27 2000-06-29T01:12:47.000000Z K 7 svn:log V 72 Fix memory leakage on module unload. Spotted by: fixed INVARIANTS code END K 10 svn:author V 2 bp K 8 svn:date V 27 2000-06-29T01:19:12.000000Z K 7 svn:log V 72 Fix memory leakage on module unload. Spotted by: fixed INVARIANTS code END K 10 svn:author V 3 jhb K 8 svn:date V 27 2000-06-29T01:25:31.000000Z K 7 svn:log V 146 Rework the detecting of the rdmsr and wrmsr instructions in the v86 monitor so that the codepath is cleaner and easier to maintain in the future. END K 10 svn:author V 8 gallatin K 8 svn:date V 27 2000-06-29T02:26:48.000000Z K 7 svn:log V 73 remove breakage that snuck in with my last commit pointed out by: peter END K 10 svn:author V 2 bp K 8 svn:date V 27 2000-06-29T03:41:30.000000Z K 7 svn:log V 236 If kernel compiled with INVARIANTS: On unload, remove references from freelist to memory type defined by module. Print a warning if module defines and allocate its own memory type, but didn't free it all on unload. Reviewed by: peter END K 10 svn:author V 3 dcs K 8 svn:date V 27 2000-06-29T04:48:34.000000Z K 7 svn:log V 1774 Add Boyler-Moore algorithm to pre-matching test. The BM algorithm works by scanning the pattern from right to left, and jumping as many characters as viable based on the text's mismatched character and the pattern's already matched suffix. This typically enable us to test only a fraction of the text's characters, but has a worse performance than the straight-forward method for small patterns. Because of this, the BM algorithm will only be used if the pattern size is at least 4 characters. Notice that this pre-matching is done on the largest substring of the regular expression that _must_ be present on the text for a succesful match to be possible at all. For instance, "(xyzzy|grues)" will yield a null "must" substring, and, therefore, not benefit from the BM algorithm at all. Because of the lack of intelligence of the algorithm that finds the "must" string, things like "charjump|matchjump" will also yield a null string. To optimize that, "(char|match)jump" should be used. The setup time (at regcomp()) for the BM algorithm will most likely outweight any benefits for one-time matches. Given the slow regex(3) we have, this is unlikely to be even perceptible, though. The size of a regex_t structure is increased by 2*sizeof(char*) + 256*sizeof(int) + strlen(must)*sizeof(int). This is all inside the regex_t's "guts", which is allocated dynamically by regcomp(). If allocation of either of the two tables fail, the other one is freed. In this case, the straight-forward algorithm is used for pre-matching. Tests exercising the code path affected have shown a speed increase of 50% for "must" strings of length four or five. API and ABI remain unchanged by this commit. The patch submitted on the PR was not used, as it was non-functional. PR: 14342 END K 10 svn:author V 4 ache K 8 svn:date V 27 2000-06-29T06:10:14.000000Z K 7 svn:log V 24 Add randomdev_load="NO" END K 10 svn:author V 5 asami K 8 svn:date V 27 2000-06-29T06:22:10.000000Z K 7 svn:log V 70 Add "mach" dir for perl, that's where it installs a lot of stuff now. END K 10 svn:author V 5 asami K 8 svn:date V 27 2000-06-29T06:26:13.000000Z K 7 svn:log V 165 Increment __FreeBSD_version to mark perl5 upgrade in -current. (I know, a little late, but snaps with the new perl5 aren't showing up yet so it should still help.) END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-06-29T07:31:37.000000Z K 7 svn:log V 145 Only try to detect Linksys PCMCIA cards when we are in a pccard environment. This fixes the breakage to ISA ethernet cards. Reviewed by: peter END K 10 svn:author V 5 asami K 8 svn:date V 27 2000-06-29T07:39:52.000000Z K 7 svn:log V 54 MFC: extra directories (excluding perl5.006 changes). END K 10 svn:author V 7 roberto K 8 svn:date V 27 2000-06-29T08:14:54.000000Z K 7 svn:log V 71 MFC: Fix potential buffer overflows (even if ancontrol is not setuid). END K 10 svn:author V 7 roberto K 8 svn:date V 27 2000-06-29T08:15:47.000000Z K 7 svn:log V 54 Remove a comment that should not have been committed. END K 10 svn:author V 7 roberto K 8 svn:date V 27 2000-06-29T08:18:38.000000Z K 7 svn:log V 55 MFC: Bring the ancontrol buffer oflows fixes here too. END K 10 svn:author V 7 roberto K 8 svn:date V 27 2000-06-29T08:23:26.000000Z K 7 svn:log V 32 MFC: Fix building with -DDEBUG. END K 10 svn:author V 3 jhb K 8 svn:date V 27 2000-06-29T08:24:50.000000Z K 7 svn:log V 153 Change the fault message to say 'BTX halted' isntead of 'System halted' to avoid confusion. Submitted by: George Scott END K 10 svn:author V 3 des K 8 svn:date V 27 2000-06-29T08:26:26.000000Z K 7 svn:log V 40 MFC: everything since RELENG_4 branched END K 10 svn:author V 3 ume K 8 svn:date V 27 2000-06-29T08:39:28.000000Z K 7 svn:log V 251 MFC: Don't call _getipnodebyname_multi(). It fixes the problem that getaddrinfo() accidentally returns IPv4 mapped IPv6 address instead of native IPv4 address. Now, getaddinfo() is scoped address ready. You can put scoped address within /etc/hosts. END K 10 svn:author V 3 des K 8 svn:date V 27 2000-06-29T08:39:29.000000Z K 7 svn:log V 111 Don't forget to delete the output file if the request fails. Don't delete the output file if -r was specified. END K 10 svn:author V 5 peter K 8 svn:date V 27 2000-06-29T09:00:23.000000Z K 7 svn:log V 66 List src-secure-rsa and clarify that cvs-crypto does not have it. END K 10 svn:author V 5 peter K 8 svn:date V 27 2000-06-29T09:03:59.000000Z K 7 svn:log V 69 Include the src-crypto-rsa collection by default for internat users. END K 10 svn:author V 2 bp K 8 svn:date V 27 2000-06-29T09:26:26.000000Z K 7 svn:log V 32 Move #ifdef to the right place. END K 10 svn:author V 3 des K 8 svn:date V 27 2000-06-29T09:28:26.000000Z K 7 svn:log V 49 Prettify, add $FreeBSD$ and claim maintainership END K 10 svn:author V 3 des K 8 svn:date V 27 2000-06-29T09:29:37.000000Z K 7 svn:log V 54 MF4: prettify, add $FreeBSD$ and claim maintainership END K 10 svn:author V 3 jhb K 8 svn:date V 27 2000-06-29T09:51:53.000000Z K 7 svn:log V 785 Note that the cleaning up and reordering in revision 1.19 actually fixed a nasty bug. The comparison to tset for an instruciton with the $0xf prefix should have jumped down to the next non-prefix instruction test. Instead, it jumped down to the next instruction test, which happened to be prefixed instruction test. This test assumed that the earlier test had succeeded, thus in some rare cases, this test would actually succeed, and we would actually attempt to emulate a RDMSR instruction instead of the instruction we were supposed to be emulating. Since %ecx usually did not contain a valid MSR index at the time of the trap, this usually resulted in a #GP due to an invalid MSR address and a lovely BTX fault when one tried to boot the machine. Noticed by: unfurl and others END K 10 svn:author V 2 ru K 8 svn:date V 27 2000-06-29T09:52:14.000000Z K 7 svn:log V 68 "Ease understanding" of how -punch_fw works. Reviewed by: sheldonh END K 10 svn:author V 2 ru K 8 svn:date V 27 2000-06-29T10:06:27.000000Z K 7 svn:log V 61 MFC: (rev 1.39) "Ease understanding" of how -punch_fw works. END K 10 svn:author V 3 des K 8 svn:date V 27 2000-06-29T10:32:56.000000Z K 7 svn:log V 24 Implement the -c option END K 10 svn:author V 3 des K 8 svn:date V 27 2000-06-29T10:35:24.000000Z K 7 svn:log V 148 Note that the -h, -c and -f options are deprecated, and remove note that incorrectly stated that they were not implemented. Document the -d option. END K 10 svn:author V 3 des K 8 svn:date V 27 2000-06-29T10:44:10.000000Z K 7 svn:log V 109 Make restart work in active mode, too. PR: bin/18688 Submitted by: Rudolf Cejka END K 10 svn:author V 4 alex K 8 svn:date V 27 2000-06-29T10:45:55.000000Z K 7 svn:log V 187 - MSDOSFS can do both FAT _and_ FAT32. Since the name "MSDOS" might be confusing, explecitely mention this. - softupdates' README is no longer in contrib/softupdates. Fix new location. END K 10 svn:author V 4 nyan K 8 svn:date V 27 2000-06-29T13:34:54.000000Z K 7 svn:log V 281 - Removed machine dependent directory and command from src/release/{boot,fixit}_crunch.conf. - Added machine specific fixit_crunch.conf for PC/AT and PC-98 to src/release/$MACHINE. - Use config file in src/release/$MACHINE if exist. If it does not exist, use in src/release. END K 10 svn:author V 4 ache K 8 svn:date V 27 2000-06-29T17:21:45.000000Z K 7 svn:log V 46 Fix assigning alt_month in compatibility code END K 10 svn:author V 4 ache K 8 svn:date V 27 2000-06-29T17:24:37.000000Z K 7 svn:log V 25 MFC: alt_month assigning END K 10 svn:author V 6 archie K 8 svn:date V 27 2000-06-29T17:57:04.000000Z K 7 svn:log V 298 Move the securelevel check before loading KLD's into linker_load_file(), instead of requiring every caller of linker_load_file() to perform the check itself. This avoids netgraph loading KLD's when securelevel > 0, not to mention any future code that may call linker_load_file(). Reviewed by: dfr END K 10 svn:author V 5 markm K 8 svn:date V 27 2000-06-29T18:21:51.000000Z K 7 svn:log V 74 Tweaks to the build to allow "make -DNOCLEAN" and "make release" to work. END K 10 svn:author V 3 dcs K 8 svn:date V 27 2000-06-29T18:53:55.000000Z K 7 svn:log V 153 Initialize variables used by the Boyer-Moore algorithm. This should fix core dumps when the must pattern is of length three or less. Bug found by: knu END K 10 svn:author V 6 archie K 8 svn:date V 27 2000-06-29T19:14:28.000000Z K 7 svn:log V 64 Fix kernel build breakage when 'device ether' was not included. END K 10 svn:author V 3 mph K 8 svn:date V 27 2000-06-29T20:51:59.000000Z K 7 svn:log V 31 MFC: Add \a and \e to echo -e. END K 10 svn:author V 6 archie K 8 svn:date V 27 2000-06-29T21:45:39.000000Z K 7 svn:log V 66 MFC: (revs. 1.6, 1.7): seq numbers, race condition, ack algorithm END K 10 svn:author V 6 archie K 8 svn:date V 27 2000-06-29T22:30:42.000000Z K 7 svn:log V 90 Provide forward declarations for struct ifnet and struct mbuf to avoid compiler warnings. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-06-29T23:49:34.000000Z K 7 svn:log V 27 MFC: /dev/rXXX -> /dev/XXX END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-06-30T01:03:16.000000Z K 7 svn:log V 10 MFC: less END K 10 svn:author V 5 billf K 8 svn:date V 27 2000-06-30T03:17:42.000000Z K 7 svn:log V 35 add a real prototype for printit() END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2000-06-30T06:30:53.000000Z K 7 svn:log V 127 Only punctuation is an allowed argument type for open-close macros such as Po/Pc, as explained by phantom. Reported by: billf END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-06-30T08:43:45.000000Z K 7 svn:log V 25 MFC: typo/spelling fixes END K 10 svn:author V 5 brian K 8 svn:date V 27 2000-06-30T09:39:51.000000Z K 7 svn:log V 82 Correct two variable names Mostly submitted by: howardjp@wam.umd.edu PR: 19567 END K 10 svn:author V 5 brian K 8 svn:date V 27 2000-06-30T09:41:16.000000Z K 7 svn:log V 117 Add $daily_status_mail_rejects_logs, defaulting to 3 to control how many /var/log/maillog* files to check PR: 19587 END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-06-30T09:45:00.000000Z K 7 svn:log V 66 MFC: Do not dot terminate err() string. Cross reference using .Xr END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-06-30T09:47:52.000000Z K 7 svn:log V 61 MFC: remove unknown OPTIONS section name. Getopt returns -1. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-06-30T09:51:59.000000Z K 7 svn:log V 55 MFC: Add DIAGNOSTICS section name and other doc fixes. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-06-30T09:54:06.000000Z K 7 svn:log V 16 MFC: doc fixes. END K 10 svn:author V 2 tg K 8 svn:date V 27 2000-06-30T11:06:17.000000Z K 7 svn:log V 53 MFC: Install a VGA font for use under X. Doc update. END K 10 svn:author V 5 brian K 8 svn:date V 27 2000-06-30T11:18:19.000000Z K 7 svn:log V 38 De-spam (oops!) Spotted by: sheldonh END K 10 svn:author V 5 peter K 8 svn:date V 27 2000-06-30T11:22:19.000000Z K 7 svn:log V 144 Fix the perl build on the Alpha. int32 is 'int' not 'long'. int64 is 'long', not 'long long'. Maybe the intXX_t types should have been used. END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2000-06-30T11:24:31.000000Z K 7 svn:log V 170 Use "yesterday's" instead of "yesterdays" as required for correct grammar. Since this pushes the line to an unacceptable length, apply the accepted line breaking style. END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2000-06-30T11:50:46.000000Z K 7 svn:log V 157 Do not link bktr.4 and bt.4 into ../, since these are no longer installed from man4.i386. PR: 19601 Submitted by: Ben Smithurst END K 10 svn:author V 4 ache K 8 svn:date V 27 2000-06-30T14:01:49.000000Z K 7 svn:log V 34 Update cons* entries from termcap END K 10 svn:author V 4 ache K 8 svn:date V 27 2000-06-30T14:02:53.000000Z K 7 svn:log V 18 MFC: update cons* END K 10 svn:author V 7 wollman K 8 svn:date V 27 2000-06-30T15:22:18.000000Z K 7 svn:log V 25 Fix spelling of `whose'. END K 10 svn:author V 7 wollman K 8 svn:date V 27 2000-06-30T15:28:06.000000Z K 7 svn:log V 23 Spell `99%' correctly. END K 10 svn:author V 7 wollman K 8 svn:date V 27 2000-06-30T15:59:48.000000Z K 7 svn:log V 127 Use consistent markup for literals and quoted metasyntactic variables. Left unfixed: `NIS' should be marked up as a tradename. END K 10 svn:author V 7 wollman K 8 svn:date V 27 2000-06-30T16:14:07.000000Z K 7 svn:log V 54 MFC: spelling an markup fixes from 1.27 through 1.29. END K 10 svn:author V 6 archie K 8 svn:date V 27 2000-06-30T16:38:24.000000Z K 7 svn:log V 54 Previous commit didn't work; this time really fix it. END K 10 svn:author V 6 nsayer K 8 svn:date V 27 2000-06-30T16:46:58.000000Z K 7 svn:log V 10 MFC: 1.19 END K 10 svn:author V 6 nsayer K 8 svn:date V 27 2000-06-30T16:49:41.000000Z K 7 svn:log V 10 MFC: 1.11 END K 10 svn:author V 3 imp K 8 svn:date V 27 2000-06-30T17:19:07.000000Z K 7 svn:log V 140 Note des' libfetch/fetch changes. Clarify requirements for dev random, et al, from markm's commit. Initial diffs for the latter by: archie END K 10 svn:author V 3 mph K 8 svn:date V 27 2000-06-30T20:05:21.000000Z K 7 svn:log V 62 Quit on EOF from terminal instead of redisplaying the prompt. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-06-30T23:02:12.000000Z K 7 svn:log V 24 MFC: sync with rev 1.13 END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T01:28:10.000000Z K 7 svn:log V 59 MFC: [rev 1.4] Remove duplicated ';' statement delimiters. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T01:34:11.000000Z K 7 svn:log V 50 MFC: [rev 1.10] 1000000 usecs to 1 sec conversion END K 10 svn:author V 3 bsd K 8 svn:date V 27 2000-07-01T02:40:13.000000Z K 7 svn:log V 100 Fix my own style bugs (use of spaces instead of tabs for indentation). This is a style-only change. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T03:00:16.000000Z K 7 svn:log V 127 MFC: [rev 1.10] Fixed LDADD. Using ${LIBM} instead of -lm gave the wrong libm in most cases and broke the world in some cases. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T03:02:08.000000Z K 7 svn:log V 43 MFC: [rev 1.20] Add -g for gigabyte sizes. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T03:04:35.000000Z K 7 svn:log V 24 MFC: [rev 1.13] Use %Ef END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T03:08:59.000000Z K 7 svn:log V 40 MFC: [rev 1.30] Remove unused #include. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T03:11:59.000000Z K 7 svn:log V 33 MFC: [rev 1.17] Fix warn format. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T03:13:10.000000Z K 7 svn:log V 45 MFC: [rev 1.7] Remove test for block device. END K 10 svn:author V 6 dwhite K 8 svn:date V 27 2000-07-01T04:19:43.000000Z K 7 svn:log V 153 Make sure proper init is included .. in some cases the regular init may not get in the crunch binary (!) Submitted by: Dennis Cartier END K 10 svn:author V 6 dwhite K 8 svn:date V 27 2000-07-01T04:20:07.000000Z K 7 svn:log V 76 Quiet gunzip of /etc files. Submitted by: Dennis Cartier END K 10 svn:author V 6 dwhite K 8 svn:date V 27 2000-07-01T04:22:19.000000Z K 7 svn:log V 123 Revert part of previous patch: still copy ${MFS}/root to /root in case there's some shell files in there we actually want. END K 10 svn:author V 5 roger K 8 svn:date V 27 2000-07-01T04:40:01.000000Z K 7 svn:log V 53 Add 'bridge' so we can clean up the bridge files too END K 10 svn:author V 5 roger K 8 svn:date V 27 2000-07-01T04:41:44.000000Z K 7 svn:log V 54 MFC: Add 'bridge' so we can clean up the bridge files END K 10 svn:author V 5 roger K 8 svn:date V 27 2000-07-01T04:44:44.000000Z K 7 svn:log V 48 MFC: Add 'bridge' to list of sections to clean END K 10 svn:author V 5 green K 8 svn:date V 27 2000-07-01T05:36:25.000000Z K 7 svn:log V 193 Various cleanups are made to reduce warnings and make code prettier :) Also, check for ftruncate() return value and die on failure, but only try to ftruncate() when the file is a regular file. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T05:39:52.000000Z K 7 svn:log V 227 MFC: kvm.c [rev 1.14] Change the return value of kvm_read/kvm_write to be -1 on error. kvm.c [rev 1.13], kvm_getswapinfo [rev 1.11], kvm_proc.c [rev 1.26] -Wall, which caught a real bug where buflen wasn't being set properly. END K 10 svn:author V 5 green K 8 svn:date V 27 2000-07-01T05:48:33.000000Z K 7 svn:log V 231 The SVR4 module calls itself ELFOSABI_SOLARIS, and who am I to disagree if it runs my Solaris binaries? Add the missing "Solaris" type here so that binaries may be branded with it rather than the seemingly- defunct ELFOSABI_SVR4. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T05:51:38.000000Z K 7 svn:log V 68 MFC: Only detect Linksys PCMCIA cards when in a pccard environment. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T06:02:14.000000Z K 7 svn:log V 29 MFC: Remove unused #include. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T06:06:46.000000Z K 7 svn:log V 102 MFC: [rev 1.7] Make the fore_dnld program more robust and reliable. [rev 1.8] Remove unused #include. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T06:11:51.000000Z K 7 svn:log V 49 MFC: [rev 1.7] 1000000 usec -> 1 sec 0 usec; fix END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T06:23:36.000000Z K 7 svn:log V 29 MFC: Remove unused includes. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T06:31:52.000000Z K 7 svn:log V 77 MFC: Add include of errno.h where needed, remove extern int errno where not. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T06:47:47.000000Z K 7 svn:log V 27 MFC: /dev/rXXX -> /dev/XXX END K 10 svn:author V 6 alfred K 8 svn:date V 27 2000-07-01T06:55:11.000000Z K 7 svn:log V 57 bring in binary search tree code. Obtained from: NetBSD END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T07:32:37.000000Z K 7 svn:log V 40 MFC: [rev 1.10] Block devices are gone. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T07:37:50.000000Z K 7 svn:log V 71 MFC: Display version number of each kld module when using the -v flag. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T07:39:53.000000Z K 7 svn:log V 42 MFC: [rev 1.32] Remove xref to mount_lfs. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T07:42:36.000000Z K 7 svn:log V 56 MFC: [rev 1.2] Use the same order in DPADD as in LDADD. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T07:56:00.000000Z K 7 svn:log V 99 Back this out. This really does not give us the version number of the kld's. Pointed out by: bp END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T07:57:28.000000Z K 7 svn:log V 100 Backout rev 1.8. This really does not give us the version number of the kld's. Pointed out by: bp END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T08:01:55.000000Z K 7 svn:log V 137 MFC: [rev 1.37] /dev/rXXX -> /dev/XXXX [rev 1.38] Add QNX 4 partitions to fdisk's list. [rev 1.39] ADd plan9 partitions to fdisk's list. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T08:07:49.000000Z K 7 svn:log V 39 MFC: [rev 1.11] Clarify error message. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T08:09:45.000000Z K 7 svn:log V 53 MFC: [rev 1.7] Fix occurences of nos_tun to nos-tun. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T08:10:59.000000Z K 7 svn:log V 60 MFC: [rev 1.21] Update references to disk and tape devices. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T08:30:37.000000Z K 7 svn:log V 120 MFC: [rev 1.60] Enable 8bit chars excepting high controls. [rev 1.63] Prevent a non-exploitable remote buffer overflow. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T08:32:48.000000Z K 7 svn:log V 34 MFC: [rev 1.6] Convert to errx(). END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T10:06:41.000000Z K 7 svn:log V 114 MFC: [rev 1.9] Adjust the width of the first column in output from "sa -m" to match the max length of user names. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T10:11:54.000000Z K 7 svn:log V 39 MFC: Fix missing DPADD and style bugs. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T10:18:02.000000Z K 7 svn:log V 40 MFC: 1000000 usec -> 1 sec 0 usec; fix. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T10:21:34.000000Z K 7 svn:log V 68 MFC: Do not add progname in err() strings, it will be printed twice END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T10:35:07.000000Z K 7 svn:log V 289 MFC: env.c [rev 1.8,1.9] Fix a situation where a pointer which should point to dynamically allocated memory was instead pointed to a static string. misc.c [rev 1.9] entry.c [rev 1.11] Catch and report memory allocation failures. do_command.c [rev 1.16] Catch and report fdopen failures. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T10:37:21.000000Z K 7 svn:log V 39 MFC: [rev 1.4] Match err(3) prototype. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T10:38:54.000000Z K 7 svn:log V 55 MFC: [rev 1.3] Clean y.output and fix some style bugs. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T10:41:01.000000Z K 7 svn:log V 60 MFC: [rev 1.7] Do not dot terminate lines in FILES section. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T10:42:33.000000Z K 7 svn:log V 52 MFC: [rev 1.15] Use %Ef instead of hardcoded %b %e. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T10:46:25.000000Z K 7 svn:log V 57 MFC: [rev 1.9] remove extern int errno; include errno.h END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T11:05:40.000000Z K 7 svn:log V 60 MFC: [rev 1.5] Install mailer.conf as ${BINOWN}, ${BINGRP}. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T11:33:43.000000Z K 7 svn:log V 27 MFC: /dev/rXXX -> /dev/XXX END K 10 svn:author V 5 roger K 8 svn:date V 27 2000-07-01T12:04:15.000000Z K 7 svn:log V 40 Add a missing 'fi' from an if statement END K 10 svn:author V 5 roger K 8 svn:date V 27 2000-07-01T12:05:13.000000Z K 7 svn:log V 24 MFC: Add a missing 'fi' END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T12:24:23.000000Z K 7 svn:log V 96 MFC: #include where needed. Kill extern int errno;. Minor warnings in tip corrected. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T12:32:35.000000Z K 7 svn:log V 58 MFC: Add usage. Also document flags -d and -t in banner. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T12:38:24.000000Z K 7 svn:log V 62 MFC: [rev 1.6] Use F_SETFL with arg of 0 to clear O_NONBLOCK. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-01T12:45:51.000000Z K 7 svn:log V 65 MFC: Change the output of truss to more closely resemble SysV's. END K 10 svn:author V 5 roger K 8 svn:date V 27 2000-07-01T13:51:22.000000Z K 7 svn:log V 68 Add .image.list to the list of temporary files which can be deleted END K 10 svn:author V 5 roger K 8 svn:date V 27 2000-07-01T13:54:34.000000Z K 7 svn:log V 48 MFC: Add .image.list to list of files to delete END K 10 svn:author V 5 roger K 8 svn:date V 27 2000-07-01T14:09:23.000000Z K 7 svn:log V 48 MFC: add .image.list to the files to be deleted END K 10 svn:author V 3 bsd K 8 svn:date V 27 2000-07-01T14:33:49.000000Z K 7 svn:log V 62 MFC rev 1.14: fix calling semantics wrt suser() in ipcperm(). END K 10 svn:author V 3 dan K 8 svn:date V 27 2000-07-01T15:55:49.000000Z K 7 svn:log V 193 Add URI encoding to the vis/unvis routines courtesy of VIS_HTTPSTYLE. Since alex is a -doc committer, he can update his own manpage. :-) Also add $FreeBSD$ while I'm here. Submitted by: alex END K 10 svn:author V 3 dan K 8 svn:date V 27 2000-07-01T17:49:34.000000Z K 7 svn:log V 13 Style fixes. END K 10 svn:author V 3 ume K 8 svn:date V 27 2000-07-01T19:33:05.000000Z K 7 svn:log V 32 MFC: DNS IPv6 transport support END K 10 svn:author V 4 ache K 8 svn:date V 27 2000-07-01T21:25:33.000000Z K 7 svn:log V 121 Enable SIGCHLD to stop childs complaining to SIG_IGN of it. It helps perl f.e. Obtained from: OpenBSD do_command.c v1.7 END K 10 svn:author V 4 ache K 8 svn:date V 27 2000-07-01T21:26:37.000000Z K 7 svn:log V 31 MFC: enable SIGCHLD for childs END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-01T21:28:49.000000Z K 7 svn:log V 137 Print the correct speed when speed is less than 1MB/s. Fixed in cam_xpt.c, r1.81 Submitted by: Gerd Knops END K 10 svn:author V 6 dwhite K 8 svn:date V 27 2000-07-01T21:31:01.000000Z K 7 svn:log V 114 Reverse rest of patch: -f isn't a valid option in minigzip. Boot to the head applied to: dwhite, guy@trigger.net END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-01T21:32:28.000000Z K 7 svn:log V 18 MFC: Wrong speed. END K 10 svn:author V 3 jhb K 8 svn:date V 27 2000-07-01T21:48:05.000000Z K 7 svn:log V 224 - Build modules with world so that modules are back in the bin dist. - Small cleanups to kernel installs. - Don't install kernel.config and loader.config on the boot floppy since they haven't been used in quite some time. END K 10 svn:author V 4 ache K 8 svn:date V 27 2000-07-01T22:37:02.000000Z K 7 svn:log V 113 Make sure argv gets NULL terminated if cron entry has >= MAX_ARGS arguments Obtained from: OpenBSD popen.c v1.3 END K 10 svn:author V 4 ache K 8 svn:date V 27 2000-07-01T22:38:28.000000Z K 7 svn:log V 47 MFC: make shure argv is always NULL-terminated END K 10 svn:author V 4 ache K 8 svn:date V 27 2000-07-01T22:58:16.000000Z K 7 svn:log V 277 Prevent user from breaking his limits and restrictions or abusing sendmail by any other way via MAILTO tag (since sendmail is running from daemon). Now run sendmail from user, as any other cron user command. Obtained from: Inspired by OpenBSD, but implementation is different END K 10 svn:author V 3 ken K 8 svn:date V 27 2000-07-01T23:35:49.000000Z K 7 svn:log V 248 MFC, Implement a new camcontrol function, 'camcontrol format'. Merged files/revisions: camcontrol.c: rev 1.23 camcontrol.8: rev 1.21 libcam/Makefile: rev 1.7 scsi_da.c: rev 1.49 scsi_da.h: rev 1.5 Tested for RELENG_4 by: markm, nectar, will END K 10 svn:author V 3 ken K 8 svn:date V 27 2000-07-01T23:38:03.000000Z K 7 svn:log V 159 MFC, rev 1.22: Use the Ic (Internal command) mdoc macro to denote camcontrol subcommands. Submitted by: sheldonh Tested for RELENG_4 by: markm, nectar, will END K 10 svn:author V 3 ken K 8 svn:date V 27 2000-07-01T23:41:17.000000Z K 7 svn:log V 313 MFC, rev 1.24: Send 'camcontrol help' usage output to stdout instead of stderr, so it can be viewed more easily with a pager. Regular (i.e. short) usage output is still sent to stderr. PR: bin/12358 Submitted by: Christian Weisgerber Tested for RELENG_4 by: markm, nectar, will END K 10 svn:author V 3 ken K 8 svn:date V 27 2000-07-01T23:44:10.000000Z K 7 svn:log V 366 MFC: camcontrol.c rev 1.25, camcontrol.8 rev 1.23 Eliminate the default device name (da) and unit number (0) in camcontrol. This may break some scripts, but with the number of ways users can damage a system with this tool, it's important to make sure they specify which device they want to talk to. Suggested by: joerg Tested for RELENG_4 by: markm, nectar, will END K 10 svn:author V 3 ken K 8 svn:date V 27 2000-07-01T23:45:47.000000Z K 7 svn:log V 169 MFC, rev 1.86: Disable multi-lun probing on Hitachi DK31* drives. PR: misc/18793 Submitted by: Paul Haddad Tested for RELENG_4 by: markm, nectar, will END K 10 svn:author V 3 ken K 8 svn:date V 27 2000-07-01T23:47:37.000000Z K 7 svn:log V 382 MFC, rev 1.26: When printing out the transfer rate display for 'camcontrol inquiry', use the current setting for tagged queueing when deciding whether or not to print "Tagged Queueing Enabled" instead of using the device's actual capabilities. Reported by: Gustavo Vieira Goncalves Coelho Rios Reviewed by: mjacob Tested for RELENG_4 by: markm, nectar, will END K 10 svn:author V 4 ache K 8 svn:date V 27 2000-07-02T03:17:31.000000Z K 7 svn:log V 25 Fix manpath for new perl END K 10 svn:author V 3 imp K 8 svn:date V 27 2000-07-02T03:34:08.000000Z K 7 svn:log V 41 fix fd leak by close(fd) at end of loop. END K 10 svn:author V 4 ache K 8 svn:date V 27 2000-07-02T04:15:15.000000Z K 7 svn:log V 86 Call login_close() to prevent parent from memory leaking in some cases due to vfork() END K 10 svn:author V 4 ache K 8 svn:date V 27 2000-07-02T04:17:57.000000Z K 7 svn:log V 24 MFC: call login_close() END K 10 svn:author V 5 green K 8 svn:date V 27 2000-07-02T08:08:09.000000Z K 7 svn:log V 541 Modify ktrace's general I/O tracing, ktrgenio(), to use a struct uio * instead of a struct iovec * array and int len. Get rid of stupidly trying to allocate all of the memory and copyin()ing the entire iovec[], and instead just do the proper VOP_WRITE() in ktrwrite() using a copy of the struct uio that the syscall originally used. This solves the DoS which could easily be performed; to work around the DoS, one could also remove "options KTRACE" from the kernel. This is a very strong MFC candidate for 4.1. Found by: art@OpenBSD.org END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-02T09:28:37.000000Z K 7 svn:log V 133 MFC: Let cmp(1) grow in -x option to print differences in contemporarry hex format rather than the mixed decimal/octal format of -l. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-02T09:34:27.000000Z K 7 svn:log V 27 MFC: Use errx(). .Nm fixes END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-02T09:44:55.000000Z K 7 svn:log V 39 MFC: [rev 1.14] Fix a buffer overflow. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-02T09:50:17.000000Z K 7 svn:log V 111 MFC: limits.1 [rev 1.15] Properly use .Nm, .Em, .Pa etc. limits.c [rev 1.8] Make usage() a simplier function. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-02T09:52:14.000000Z K 7 svn:log V 39 MFC: Sync SYNOPSIS and usage() string. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-02T09:57:51.000000Z K 7 svn:log V 107 MFC: quota.1 [rev 1.8] Remove incorrect use of .Nm. quota.c [rev 1.12] Wrap long lines, Unwrap short lines END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-02T10:03:17.000000Z K 7 svn:log V 57 MFC: Rescale the IOstat bars. Remove unneeded includes. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-02T10:05:43.000000Z K 7 svn:log V 41 MFC: [rev 1.39] Remove unneeded include. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-02T10:20:25.000000Z K 7 svn:log V 51 MFC: Add support for msdos and cd9660 filesystems. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-02T10:28:38.000000Z K 7 svn:log V 69 MFC: Add a new option: -m enables searching for memory-mapped files. END K 10 svn:author V 3 dcs K 8 svn:date V 27 2000-07-02T10:34:25.000000Z K 7 svn:log V 142 Remove from the notes a bug that it's said to have been fixed. PR: 15561 Submitted by: Martin Kammerhofer Confirmed by: ache END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-02T10:45:29.000000Z K 7 svn:log V 186 MFC: Makefile [rev 1.5] Fix LDADD and style bugs from DPADD and LDADD. du.1 [rev 1.16] Better use of .Nm and .Ar. du.c [rev 1.19] Use warnx(), -Wall cleaning and remove unused #include. END K 10 svn:author V 3 dcs K 8 svn:date V 27 2000-07-02T10:58:07.000000Z K 7 svn:log V 2340 Enhance the optimization provided by pre-matching. Fix style bugs with previous commits. At the time we search the pattern for the "must" string, we now compute the longest offset from the beginning of the pattern at which the must string might be found. If that offset is found to be infinite (through use of "+" or "*"), we set it to -1 to disable the heuristics applied later. After we are done with pre-matching, we use that offset and the point in the text at which the must string was found to compute the earliest point at which the pattern might be found. Special care should be taken here. The variable "start" is passed to the automata-processing functions fast() and slow() to indicate the point in the text at which they should start working from. The real beginning of the text is passed in a struct match variable m, which is used to check for anchors. That variable, though, is initialized with "start", so we must not adjust "start" before "m" is properly initialized. Simple tests showed a speed increase from 100% to 400%, but they were biased in that regexec() was called for the whole file instead of line by line, and parenthized subexpressions were not searched for. This change adds a single integer to the size of the "guts" structure, and does not change the ABI. Further improvements possible: Since the speed increase observed here is so huge, one intuitive optimization would be to introduce a bias in the function that computes the "must" string so as to prefer a smaller string with a finite offset over a larger one with an infinite offset. Tests have shown this to be a bad idea, though, as the cost of false pre-matches far outweights the benefits of a must offset, even in biased situations. A number of other improvements suggest themselves, though: * identify the cases where the pattern is identical to the must string, and avoid entering fast() and slow() in these cases. * compute the maximum offset from the must string to the end of the pattern, and use that to set the point at which fast() and slow() should give up trying to find a match, and return then return to pre-matching. * return all the way to pre-matching if a "match" was found and later invalidated by back reference processing. Since back references are evil and should be avoided anyway, this is of little use. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-02T11:14:42.000000Z K 7 svn:log V 136 MFC: [rev 1.9] Fix warning I should have caught in the previous commit. [rev 1.10] Make cmp -s work properly if skip values are given. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-02T11:19:29.000000Z K 7 svn:log V 58 MFC: Use errx(), remove unused #include. Correct SYNOPSIS END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-02T11:23:52.000000Z K 7 svn:log V 68 MFC: [rev 1.13] Check whether we read as many bytes as we expected. END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-02T11:27:27.000000Z K 7 svn:log V 90 MFC: maintain the proper old position in the HID decoder. Change Lennart's e-mail address END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-02T11:34:44.000000Z K 7 svn:log V 46 MFC: [rev 1.15] Doubling the size of MAXSIZE. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-02T11:42:58.000000Z K 7 svn:log V 98 MFC: [rev 1.40] Catch the usage() function up to the command line changes. Add -I and remove -e. END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-02T11:44:00.000000Z K 7 svn:log V 38 MFC: Update Lennart's e-mail address. END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-02T11:54:39.000000Z K 7 svn:log V 22 MFC: Swapped comments END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-02T11:58:30.000000Z K 7 svn:log V 29 Reset all endpoints on open. END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-02T12:09:16.000000Z K 7 svn:log V 26 MFC: Update the NetBSD Id END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-02T12:14:44.000000Z K 7 svn:log V 25 MFC: Additional defines. END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-02T12:16:54.000000Z K 7 svn:log V 52 MFC: Implement SIGIO. Add additional debugging info END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-02T12:19:56.000000Z K 7 svn:log V 53 MFC: Additional quirks for Wacom Tablet and MCT hubs END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-02T12:21:34.000000Z K 7 svn:log V 44 MFC: Remove define that is no longer needed END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-02T12:23:14.000000Z K 7 svn:log V 36 MFC: Hide a DPRINTF behind level 2. END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-02T12:25:31.000000Z K 7 svn:log V 39 MFC: Add define for OpenBSD. Fix typo. END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-02T12:31:42.000000Z K 7 svn:log V 255 MFC: Add define for Zip 250. Add detection code for InSystem USB cable. Make some code less ambiguous. (Y-E Data floppy) We match on the device, not the revision of the device/ Make two printfs distinct so it is easier to spot where the problem occurred. END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-02T12:35:15.000000Z K 7 svn:log V 134 MFC: Make the hub driver behave more like Windows does. Some device rely on a specific boot up sequence for them to work right *sigh* END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-02T12:42:40.000000Z K 7 svn:log V 274 MFC: Add rudimentary support for detach Be better behaved when initialisation fails, i.e. deallocate resources. Make the message about setting up the BIOS correctly a i386 specific thing. Add the define for the 440MX motherboard (ICH0, UHCI) Save the resources in the softc END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-02T13:14:00.000000Z K 7 svn:log V 134 MFC: libusb from NetBSD by Lennart Augustsson. (Not updating lib/Makefile is intentional. Will be done later once I've tested things) END K 10 svn:author V 7 roberto K 8 svn:date V 27 2000-07-02T14:17:41.000000Z K 7 svn:log V 175 This is the patch to make my soundcard, a Creative Ensoniq AudioPCI (an es1371 chip, device id 0x58801274 rev 0x02). Submitted by: Kenneth Wayne Culver END K 10 svn:author V 7 roberto K 8 svn:date V 27 2000-07-02T14:25:26.000000Z K 7 svn:log V 123 Add ftp4.fr.freebsd.org (aka altair.worldonline.fr) and ftp5.fr.freebsd.org (aka ns1.bsdfr.org) Strong MFC 4.1 candidate. END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-02T14:54:22.000000Z K 7 svn:log V 28 Include libusb in the build END K 10 svn:author V 5 markm K 8 svn:date V 27 2000-07-02T15:45:05.000000Z K 7 svn:log V 475 Bunch-o'-tweaks. 1) (Biggest) I tried long-and-hard to keep the version number (5.006) backwards compatible with FreeBSD; I have lost this battle, and must defer to the Perl convention (5.6.0). Victims include suidperl. this means that dirs with a name of 5.006 will be replaced with dirs named 5.6.0 in both /usr/libdata/perl and /usr/local/lib/perl. 2) Errno module is added. 3) Alpha bits extensively tweeked after a Beast-build. Other commits to follow. END K 10 svn:author V 5 markm K 8 svn:date V 27 2000-07-02T15:55:25.000000Z K 7 svn:log V 103 Follow-up commit to today's gnu/usr.bin/perl commit; serial number brought inline with Perl standards. END K 10 svn:author V 3 dcs K 8 svn:date V 27 2000-07-02T15:58:54.000000Z K 7 svn:log V 52 Fix memory leak introduced with regcomp.c rev 1.14. END K 10 svn:author V 5 markm K 8 svn:date V 27 2000-07-02T16:10:45.000000Z K 7 svn:log V 37 Perl's version number needs upating. END K 10 svn:author V 5 markm K 8 svn:date V 27 2000-07-02T16:15:03.000000Z K 7 svn:log V 39 Perl's version number needs to change. END K 10 svn:author V 3 joe K 8 svn:date V 27 2000-07-02T18:39:10.000000Z K 7 svn:log V 368 Add versions of the UK keymaps with the key marked "Caps Lock" acting as a left control key. Many want a control key in the "real" place, but still want the keymap to match the printed keys as much as possible. Inspired by obrien's us.pc-ctrl.kbd keymap, although I've had these in my tree for a long time (since the left control key on my laptop stopped working :) END K 10 svn:author V 5 chris K 8 svn:date V 27 2000-07-02T19:31:00.000000Z K 7 svn:log V 69 Report -rw-rw-rw file access modes in soo_stat. Reviewed by: alfred END K 10 svn:author V 8 groudier K 8 svn:date V 27 2000-07-02T21:26:50.000000Z K 7 svn:log V 344 - Various comment fixes and additions. - Add 2 explicit (paranoid?) memory barriers in the interrupt code (After the reading of the `flag' and prior to looking at the data, of course. :-) ). - Remove obsolete informations from the README.sym file. This commit actually results in no object difference for IA32, but 2x`mb' added for Alpha. END K 10 svn:author V 4 alex K 8 svn:date V 27 2000-07-02T21:31:26.000000Z K 7 svn:log V 561 Document VIS_HTTPSTYLE: VIS_HTTPSTYLE is a new encoding style for use in vis(), strvis() and strvisx() that escapes characters according to RFC 1808 (URI encoding). Since decoding of these require different detection of start-points of escaped characters, VIS_HTTPSTYLE can be given as flag to unvis(). unvis() will then properly decode URIs. A new function appeared, strunvisx(): strunvisx() behaves similar as strunvis(), with one exception: It has an additional flag parameter, which is passed to unvis() to archive the effect I described above. END K 10 svn:author V 4 alex K 8 svn:date V 27 2000-07-02T21:45:16.000000Z K 7 svn:log V 23 Add strunvisx.3 MLINK. END K 10 svn:author V 5 chris K 8 svn:date V 27 2000-07-02T23:56:45.000000Z K 7 svn:log V 220 Instead of just blindly setting -rw-rw-rw-: o Set access mode to -r--r--r-- if SS_CANTRCVMORE is set and the receive buffer is empty. o Set access mode to --w--w--w- is SS_CANTSENDMORE is set. Discussed with: alfred END K 10 svn:author V 5 chris K 8 svn:date V 27 2000-07-03T00:05:40.000000Z K 7 svn:log V 183 Forced commit: Read permissions are set when the SS_CANTRCVMORE flag is _not_ set and the receive buffer is empty. Write permissions are set when SS_CANTSENDMORE is _not_ set. END K 10 svn:author V 4 kris K 8 svn:date V 27 2000-07-03T02:33:02.000000Z K 7 svn:log V 262 Fix a nasty bug which would leave the struct hostent incompletely filled out when parsing certain DNS records during a reverse address resolution. Thus when code tries to examine the returned host name, it dereferences a null pointer :-( Problem noticed by: ps END K 10 svn:author V 4 kris K 8 svn:date V 27 2000-07-03T04:43:14.000000Z K 7 svn:log V 164 Previous commit broke the case of chained CNAME entries. Instead handle the bogus case by being stricter about errors. Submitted by: itojun Obtained from: KAME END K 10 svn:author V 5 green K 8 svn:date V 27 2000-07-03T04:59:37.000000Z K 7 svn:log V 57 Add the RealMedia file format. Also, add the $FreeBSD$. END K 10 svn:author V 5 green K 8 svn:date V 27 2000-07-03T05:21:43.000000Z K 7 svn:log V 88 Re-pair the MLINKS of unvis.3 with strunvisx.3. This undoubtedly was a world breakage. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-03T06:15:14.000000Z K 7 svn:log V 80 MFC: Add -y option which doesn't ask for confimation, but still shows progress. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-03T06:22:35.000000Z K 7 svn:log V 82 MFC: [rev 1.13] Print files submitted at the same instant in deterministic order. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-03T06:23:49.000000Z K 7 svn:log V 78 MFC: [rev 1.14] Quit on EOF from terminal instead of redisplaying the prompt. END K 10 svn:author V 5 peter K 8 svn:date V 27 2000-07-03T06:24:23.000000Z K 7 svn:log V 247 USA_RESIDENT is forced to YES or NO at the start of Makefile.inc1 Use that to be the final arbiter of whether or not to build the librsaintl.so plugin for openssl/openssh. Add a magic WANT_RSAINTL flag to force building even if USA_RESIDENT=YES. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-03T06:25:02.000000Z K 7 svn:log V 70 MFC: Add -p option to prevent lpd(8) from opening a listening socket. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-03T06:26:10.000000Z K 7 svn:log V 148 MFC: Fix description of `-i' and `-w' options. Fix spelling of `TeX'. Move historical formats into a separate list, to make thier cruftiness clear. END K 10 svn:author V 5 peter K 8 svn:date V 27 2000-07-03T06:26:30.000000Z K 7 svn:log V 69 Argh. Cut/paste transcription error. Fix syntax of previous commit. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-03T06:30:06.000000Z K 7 svn:log V 60 MFC: Add -s option for dumping current values of the mixer. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-03T06:31:56.000000Z K 7 svn:log V 38 MFC: Add prototype to quiet warnings. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-03T06:41:38.000000Z K 7 svn:log V 271 MFC: traceroute.c [rev 1.12] Bypass IPsec for traceroute invoked by root. [rev 1.13] Correct FreeBSD id place. Also correct vendor rcsid. Makefile [rev 1.12] Bypass IPsec for traceroute invoked by root. [rev 1.13] Don't compile in IPsec support when NOIPSEC is defined. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-03T06:58:43.000000Z K 7 svn:log V 53 MFC: Protect against comments in /etc/{passwd,group} END K 10 svn:author V 7 roberto K 8 svn:date V 27 2000-07-03T07:49:32.000000Z K 7 svn:log V 97 -lcompat doesn't seem to be needed anymore. MFC candidate (compile fine on 5.0 and 4.0-STABLE). END K 10 svn:author V 2 ru K 8 svn:date V 27 2000-07-03T08:20:11.000000Z K 7 svn:log V 60 MFC: (rev 1.13) fix a null-dereference problem. PR: 19069 END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2000-07-03T08:26:50.000000Z K 7 svn:log V 105 Add to the SEE ALSO section, a reference to the RFC mentioned in text introduced in the previous commit. END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2000-07-03T08:28:30.000000Z K 7 svn:log V 65 Fix overlong line and trailing whitespace introduced in rev 1.8. END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2000-07-03T08:31:02.000000Z K 7 svn:log V 33 Remove trailing whitespace only. END K 10 svn:author V 7 n_hibma K 8 svn:date V 27 2000-07-03T09:14:17.000000Z K 7 svn:log V 77 MFC: Add a bug to the usbd.conf man page Make a line of code less ambiguous. END K 10 svn:author V 2 ps K 8 svn:date V 27 2000-07-03T09:21:04.000000Z K 7 svn:log V 46 MFC: [rev 1.15] Doubling the size of MAXSIZE. END K 10 svn:author V 5 peter K 8 svn:date V 27 2000-07-03T09:24:12.000000Z K 7 svn:log V 178 Import the most recent ncurses 5.1 prerelease (20000701). Mostly this is intended to resolve the trace() badness once and for all. Obtained from: ftp://dickey.his.com/ncurses/ END K 10 svn:author V 5 peter K 8 svn:date V 27 2000-07-03T09:24:12.000000Z K 7 svn:log V 143 This commit was generated by cvs2svn to compensate for changes in r62449, which included commits to RCS files with non-trunk default branches. END K 10 svn:author V 7 cvs2svn K 8 svn:date V 27 2000-07-03T09:24:13.000000Z K 7 svn:log V 85 This commit was manufactured by cvs2svn to create tag 'ncurses-vendor-v5_1_20000701'. END K 10 svn:author V 5 peter K 8 svn:date V 27 2000-07-03T09:30:28.000000Z K 7 svn:log V 200 Merge conflicting vendor changes onto mainline. This essentially reverts this file to the vendor version except for the added $FreeBSD$. (The rev 1.2 IEXTEN change has been implemented more cleanly) END K 10 svn:author V 5 peter K 8 svn:date V 27 2000-07-03T09:35:22.000000Z K 7 svn:log V 35 Merge vendor changes onto mainline END K 10 svn:author V 3 phk K 8 svn:date V 27 2000-07-03T09:35:31.000000Z K 7 svn:log V 231 Style police catches up with rev 1.26 of src/sys/sys/sysctl.h: Sanitize SYSCTL_HANDLER_ARGS so that simplistic tools can grog our sources: -sysctl_vm_zone SYSCTL_HANDLER_ARGS +sysctl_vm_zone (SYSCTL_HANDLER_ARGS) END K 10 svn:author V 5 peter K 8 svn:date V 27 2000-07-03T09:38:46.000000Z K 7 svn:log V 140 Fix a merge glitch - put our FREEBSD_NATIVE hack back in the original place. The author saw fit to reindent the code which messed this up. END K 10 svn:author V 5 peter K 8 svn:date V 27 2000-07-03T09:40:52.000000Z K 7 svn:log V 64 Get this to compile in the 5.1-20000701-prerelease environment. END K 10 svn:author V 5 peter K 8 svn:date V 27 2000-07-03T09:47:47.000000Z K 7 svn:log V 18 Add new man pages END K 10 svn:author V 5 brian K 8 svn:date V 27 2000-07-03T10:23:53.000000Z K 7 svn:log V 177 MFC: Correct printf-style format error Load ng_ether if posssible Make MP & sync ``!program'' links work Don't override the peers MRRU with our local MTU setting END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2000-07-03T11:43:48.000000Z K 7 svn:log V 141 Explicitly state that mountd can be made to re-read the exports file, even though this may seem obvious to some folks. Requested by: obrien END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2000-07-03T12:01:06.000000Z K 7 svn:log V 227 What the commit log for rev 1.16 neglected to mention was that the delta touched the Name Description (Nd). It introduced a grammar error and did not fix the extraneous punctuation (Nd lines are not terminated with a period). END K 10 svn:author V 6 davidn K 8 svn:date V 27 2000-07-03T12:13:10.000000Z K 7 svn:log V 227 Fix breakage introduced by bypassing update for additional 'mod' functionality when nothing had actually changed; -d changes would not set the 'something had changed flag'. Actually test for a change in homedir. PR: bin/19649 END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2000-07-03T12:22:30.000000Z K 7 svn:log V 62 MFC rev 1.4: Remove extraneous commas and fix run-on mark-up. END K 10 svn:author V 7 asmodai K 8 svn:date V 27 2000-07-03T12:34:27.000000Z K 7 svn:log V 140 Fix up typo. Add description of sshd_program variable. Submitted by: Ashley Penney , Adrian Chadd END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2000-07-03T12:56:00.000000Z K 7 svn:log V 151 Clear the obsolete argument to the Os macro. Clear extraneous arguments to Nm. Use Pa to mark up paths. Use a single tagged list in the FILES section. END K 10 svn:author V 4 ache K 8 svn:date V 27 2000-07-03T13:03:15.000000Z K 7 svn:log V 84 Describe agrument range correctly, according to multibyte(3) Remove unneded comment END K 10 svn:author V 3 phk K 8 svn:date V 27 2000-07-03T13:06:29.000000Z K 7 svn:log V 72 Add device_set_softc() which does the obvious. Not objected to by: dfr END K 10 svn:author V 3 phk K 8 svn:date V 27 2000-07-03T13:08:56.000000Z K 7 svn:log V 53 Account for packets we clean out when we disconnect. END K 10 svn:author V 3 phk K 8 svn:date V 27 2000-07-03T13:24:25.000000Z K 7 svn:log V 46 Include SOFTUPDATES in NOTES/LINT by default. END K 10 svn:author V 3 phk K 8 svn:date V 27 2000-07-03T13:26:54.000000Z K 7 svn:log V 193 Make the two calls from kern/* into softupdates #ifdef SOFTUPDATES, that is way cleaner than using the softupdates_stub stunt, which should be killed when convenient. Discussed with: mckusick END K 10 svn:author V 8 sheldonh K 8 svn:date V 27 2000-07-03T13:29:04.000000Z K 7 svn:log V 236 Remove the use of a dash in the usage, since this isn't in keeping with other utilities which offer similar functionality. This change was discussed with ache, who brought in the ability to use a dash to represent stdin in comcontrol. END K 10 svn:author V 3 phk K 8 svn:date V 27 2000-07-03T13:34:18.000000Z K 7 svn:log V 127 Experiemntal ascii based device configuration mechanism. This may or may not survive, decision will be made well before 5.0-R END K 10 svn:author V 3 phk K 8 svn:date V 27 2000-07-03T13:48:37.000000Z K 7 svn:log V 73 Pull the rug under block mode devices. they return ENXIO on open(2) now. END K 10 svn:author V 3 phk K 8 svn:date V 27 2000-07-03T17:39:24.000000Z K 7 svn:log V 37 Yellow hat this way: forgot cvs add. END K 10 svn:author V 3 joe K 8 svn:date V 27 2000-07-03T18:09:40.000000Z K 7 svn:log V 65 MFC: revision 1.36. Add fflagstostr and strtofflags prototypes. END K 10 svn:author V 6 obrien K 8 svn:date V 27 2000-07-03T18:44:09.000000Z K 7 svn:log V 48 Import Patchlevel 2 of the ISC 2.0 dhcp client. END