Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-09-10 | Drop syspatch_trap, it's simple enough for trap no needing its own function. | Antoine Jacoutot | |
Introduce sp_err() which will get used for error messages. | |||
2016-09-10 | apply_patches should not take any arguments. | Antoine Jacoutot | |
Few tweaks while here. | |||
2016-09-10 | Moving the host reset after setting the clock in the attach path makes | Marcus Glocker | |
the host reset succeed on the allwinner,sun5i-r8. ok kettenis | |||
2016-09-10 | Sync libsa pkcs5_pbkdf2() with libutil. | Joel Sing | |
2016-09-10 | Ensure that install_files() returns successful if the _tmpsrc | Robert Peichaer | |
directory does not exist. Otherwise, INSTALL_METHOD is not set and this information is not sent to the cgi server. OK halex | |||
2016-09-10 | Bring in FreeBSD changes to prevent clang triggering | Jonathan Gray | |
-Wstring-plus-int -Wempty-body and -Wshift-negative-value warnings as binutils is built with -Werror. ok guenther@ millert@ | |||
2016-09-10 | Unbreak ksh.kshrc by using a MI way of finding out the console device name. | Robert Peichaer | |
Found by landry OK deraadt | |||
2016-09-10 | spaces found during re-read | Theo de Raadt | |
2016-09-10 | Use consistent indentation for multi-line function prototypes in iwm. | Stefan Sperling | |
2011-04-24 | Here comes the easter bunnytils 2.17 (the last version released against a | Miod Vallat | |
licence mere mortals can understand the terms of); will be connected to the build on an arch-by-arch basis. Testsuites and generated files have been intentionnaly omitted from this import. Peer pressure and ok from at least drahn@ pirofti@ deraadt@ | |||
2016-09-10 | Simplify setting the USER and UID variables. | Robert Peichaer | |
While here, convert `` to $(). OK halex | |||
2016-09-10 | Rename the global nvm_to_read const int array to iwm_nvm_to_read. | Stefan Sperling | |
2016-09-10 | iwm(4) inherited the 'MVM' prefix in many of its symbol names from iwlwifi. | Stefan Sperling | |
Linux iwlwifi implements support for iwn(4) chips in the 'DVM' driver, and support for iwm(4) chips in the 'MVM' driver. In OpenBSD the 'MVM' prefix is redundant, so we can remove it to shorten many lines and reduce noise: s/iwm_mvm_/iwm_/g | |||
2016-09-10 | Fix formatting in iwm such that | Stefan Sperling | |
break; } becomes: break; } | |||
2016-09-10 | Rename iwm_mvm_sta_send_to_fw() to iwm_mvm_sta_cmd(). Get rid of pointless | Stefan Sperling | |
wrapper functions iwm_mvm_add_sta() and iwm_mvm_update_sta(). | |||
2016-09-10 | Remove remnants of rlogin, it's long gone (2002). | Robert Peichaer | |
OK halex | |||
2016-09-10 | Fix detection if default route was set by dhclient in v4_defroute(). | Robert Peichaer | |
Route labels are now enclosed in double quotes (see r1.107 of src/sbin/route/show.c). OK claudio, krw no objections halex | |||
2016-09-10 | Identation | Robert Peichaer | |
OK halex, krw | |||
2016-09-10 | The getopt while loop is very long, put the body in {}. | Florian Obser | |
Removes a "Huh, that's weird" diff to ping6. No object change. | |||
2016-09-10 | reorder main variables, no object change, reduces diff to ping6 | Florian Obser | |
2016-09-10 | according to netinet6/in6.h IPV6_MULTICAST_LOOP setsockopt takes a | Florian Obser | |
u_char argument | |||
2016-09-10 | move IPv6 specific structs up; no obj change | Florian Obser | |
2016-09-10 | reorder main variables, reduces diff | Florian Obser | |
2016-09-10 | reorder main variables; no obj change | Florian Obser | |
2016-09-10 | packet is actually u_char, pass it around as one | Florian Obser | |
2016-09-10 | Move IWM_NVM_* macro definitions from if_iwm.c to if_iwmreg.h. | Stefan Sperling | |
2016-09-10 | reorder function declaration to reduce diff between ping and ping6; no | Florian Obser | |
object change | |||
2016-09-10 | Cleanup commented lines, and only print the DN of entries | Landry Breuil | |
2016-09-10 | Improve Makefile by using ${.OBJDIR} and stop creating files in | Landry Breuil | |
${.CURDIR}. Don't start the server in .BEGIN - make obj should only create the symlink. Add CLEANFILES for proper cleaning. | |||
2016-09-10 | take it one step further and bring the message inline with arm/sparc64 | Jasper Lievisse Adriaanse | |
pointed out by guenther@ | |||
2016-09-10 | missing fclose() in an error path | Jonathan Gray | |
2016-09-10 | fix an fd leak in an error path | Jonathan Gray | |
2016-09-10 | Remove a semicolon after an if statement that resulted in | Jonathan Gray | |
bfd_senddown() always returning before the rest of the function could run. Found with clang. ok claudio@ | |||
2016-09-10 | use an unused attribute on a function argument to avoid -Wself-assign | Jonathan Gray | |
with clang ok guenther@ | |||
2016-09-09 | Remove duplicated contents, either a patch bug or PEBKAC. | Todd C. Miller | |
2016-09-09 | Include sys/_null.h for the NULL definition. | Todd C. Miller | |
2016-09-09 | print a clear error message when not ran as root instead of just falling | Jasper Lievisse Adriaanse | |
through and try whatever it can do with the invoking user's perms feedback/ok aja@ rpe@ | |||
2016-09-09 | don't hardcode the filename in an error message; use the function name instead | Jasper Lievisse Adriaanse | |
ok jsg@ (who spotted the powerpc straggler too) millert@ | |||
2016-09-09 | regen | Ted Unangst | |
2016-09-09 | fix atu device ID. kettenis found recent changes meant that atu was | Ted Unangst | |
attaching to his hub, which works poorly... ok jsg kettenis | |||
2016-09-09 | sync | Theo de Raadt | |
2016-09-09 | Move the 10 (!) defintions of NULL to their own mini header file and | Todd C. Miller | |
update the NULL definition for C++11. OK deraadt@ guenther@ kettenis@ | |||
2016-09-09 | Convert [] to ksh style [[]] tests. | Robert Peichaer | |
Based on a diff from Anthony Coulter. OK krw, halex | |||
2016-09-09 | Resurrect the detection of the console device that got lost a long time ago. | Robert Peichaer | |
OK tb | |||
2016-09-09 | Tighten pledge for fsdb and eliminate a strcmp("fsdb", getprogname()) | Theo Buehler | |
by passing a flag to setup(). ok deraadt | |||
2016-09-09 | These games have been broken for the better part of a year, ever since | Theo Buehler | |
their setgid bits got removed. Mark them as such in their manuals. ok deraadt, help with wording jmc | |||
2016-09-09 | There were 3 ways of using shell at the initial prompt of the installer. | Robert Peichaer | |
One is enough. OK halex | |||
2016-09-09 | fix pasto | Jasper Lievisse Adriaanse | |
ok yasuoka@ | |||
2016-09-09 | Source Joachim Nilsson: | Mark Lumsden | |
Coverity Scan found this interesting buglet. If read() fails the code, before this patch, would trigger a "Negative array index write". ok florian@ | |||
2016-09-09 | Handle -p as an alias of -pg. From the ports patch. | Jonathan Gray | |
ok patrick@ |