summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-09-10Drop 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-10apply_patches should not take any arguments.Antoine Jacoutot
Few tweaks while here.
2016-09-10Moving the host reset after setting the clock in the attach path makesMarcus Glocker
the host reset succeed on the allwinner,sun5i-r8. ok kettenis
2016-09-10Sync libsa pkcs5_pbkdf2() with libutil.Joel Sing
2016-09-10Ensure that install_files() returns successful if the _tmpsrcRobert 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-10Bring in FreeBSD changes to prevent clang triggeringJonathan Gray
-Wstring-plus-int -Wempty-body and -Wshift-negative-value warnings as binutils is built with -Werror. ok guenther@ millert@
2016-09-10Unbreak ksh.kshrc by using a MI way of finding out the console device name.Robert Peichaer
Found by landry OK deraadt
2016-09-10spaces found during re-readTheo de Raadt
2016-09-10Use consistent indentation for multi-line function prototypes in iwm.Stefan Sperling
2011-04-24Here comes the easter bunnytils 2.17 (the last version released against aMiod 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-10Simplify setting the USER and UID variables.Robert Peichaer
While here, convert `` to $(). OK halex
2016-09-10Rename the global nvm_to_read const int array to iwm_nvm_to_read.Stefan Sperling
2016-09-10iwm(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-10Fix formatting in iwm such thatStefan Sperling
break; } becomes: break; }
2016-09-10Rename iwm_mvm_sta_send_to_fw() to iwm_mvm_sta_cmd(). Get rid of pointlessStefan Sperling
wrapper functions iwm_mvm_add_sta() and iwm_mvm_update_sta().
2016-09-10Remove remnants of rlogin, it's long gone (2002).Robert Peichaer
OK halex
2016-09-10Fix 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-10IdentationRobert Peichaer
OK halex, krw
2016-09-10The 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-10reorder main variables, no object change, reduces diff to ping6Florian Obser
2016-09-10according to netinet6/in6.h IPV6_MULTICAST_LOOP setsockopt takes aFlorian Obser
u_char argument
2016-09-10move IPv6 specific structs up; no obj changeFlorian Obser
2016-09-10reorder main variables, reduces diffFlorian Obser
2016-09-10reorder main variables; no obj changeFlorian Obser
2016-09-10packet is actually u_char, pass it around as oneFlorian Obser
2016-09-10Move IWM_NVM_* macro definitions from if_iwm.c to if_iwmreg.h.Stefan Sperling
2016-09-10reorder function declaration to reduce diff between ping and ping6; noFlorian Obser
object change
2016-09-10Cleanup commented lines, and only print the DN of entriesLandry Breuil
2016-09-10Improve Makefile by using ${.OBJDIR} and stop creating files inLandry Breuil
${.CURDIR}. Don't start the server in .BEGIN - make obj should only create the symlink. Add CLEANFILES for proper cleaning.
2016-09-10take it one step further and bring the message inline with arm/sparc64Jasper Lievisse Adriaanse
pointed out by guenther@
2016-09-10missing fclose() in an error pathJonathan Gray
2016-09-10fix an fd leak in an error pathJonathan Gray
2016-09-10Remove a semicolon after an if statement that resulted inJonathan Gray
bfd_senddown() always returning before the rest of the function could run. Found with clang. ok claudio@
2016-09-10use an unused attribute on a function argument to avoid -Wself-assignJonathan Gray
with clang ok guenther@
2016-09-09Remove duplicated contents, either a patch bug or PEBKAC.Todd C. Miller
2016-09-09Include sys/_null.h for the NULL definition.Todd C. Miller
2016-09-09print a clear error message when not ran as root instead of just fallingJasper Lievisse Adriaanse
through and try whatever it can do with the invoking user's perms feedback/ok aja@ rpe@
2016-09-09don't hardcode the filename in an error message; use the function name insteadJasper Lievisse Adriaanse
ok jsg@ (who spotted the powerpc straggler too) millert@
2016-09-09regenTed Unangst
2016-09-09fix atu device ID. kettenis found recent changes meant that atu wasTed Unangst
attaching to his hub, which works poorly... ok jsg kettenis
2016-09-09syncTheo de Raadt
2016-09-09Move the 10 (!) defintions of NULL to their own mini header file andTodd C. Miller
update the NULL definition for C++11. OK deraadt@ guenther@ kettenis@
2016-09-09Convert [] to ksh style [[]] tests.Robert Peichaer
Based on a diff from Anthony Coulter. OK krw, halex
2016-09-09Resurrect the detection of the console device that got lost a long time ago.Robert Peichaer
OK tb
2016-09-09Tighten pledge for fsdb and eliminate a strcmp("fsdb", getprogname())Theo Buehler
by passing a flag to setup(). ok deraadt
2016-09-09These games have been broken for the better part of a year, ever sinceTheo Buehler
their setgid bits got removed. Mark them as such in their manuals. ok deraadt, help with wording jmc
2016-09-09There were 3 ways of using shell at the initial prompt of the installer.Robert Peichaer
One is enough. OK halex
2016-09-09fix pastoJasper Lievisse Adriaanse
ok yasuoka@
2016-09-09Source 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-09Handle -p as an alias of -pg. From the ports patch.Jonathan Gray
ok patrick@