OpenBSD src changes summary for 2015-12-13
==========================================

sys/dev/acpi                            usr.bin/ssh
usr.bin/tmux                            usr.sbin/eigrpctl
usr.sbin/eigrpd                         usr.sbin/smtpd

== sys =============================================================== 01/03 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/sys

dev/acpi

  ~ acpithinkpad.c                        

  > Sort button defines. (kettenis@)

  ~ acpithinkpad.c                        

  > Hook up the ThinkLight to the keyboard backlight support code.
  > For now this only supports the true ThinkLight.  Support for the keyboard
  > backlight found on the most recent ThinkPads will follow soon.
  > ok jung@ (kettenis@)

== usr.bin =========================================================== 02/03 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin

ssh

  ~ kex.c                                 

  > unbreak connections with peers that set first_kex_follows;
  > fix from Matt Johnston va bz#2515 (djm@)

tmux

  ~ cmd-attach-session.c                  ~ cmd-break-pane.c
  ~ cmd-capture-pane.c                    ~ cmd-choose-buffer.c
  ~ cmd-choose-client.c                   ~ cmd-choose-tree.c
  ~ cmd-clear-history.c                   ~ cmd-command-prompt.c
  ~ cmd-confirm-before.c                  ~ cmd-copy-mode.c
  ~ cmd-detach-client.c                   ~ cmd-display-message.c
  ~ cmd-display-panes.c                   ~ cmd-find-window.c
  ~ cmd-if-shell.c                        ~ cmd-join-pane.c
  ~ cmd-kill-pane.c                       ~ cmd-kill-session.c
  ~ cmd-kill-window.c                     ~ cmd-list-clients.c
  ~ cmd-list-panes.c                      ~ cmd-list-windows.c
  ~ cmd-load-buffer.c                     ~ cmd-lock-server.c
  ~ cmd-move-window.c                     ~ cmd-new-session.c
  ~ cmd-new-window.c                      ~ cmd-paste-buffer.c
  ~ cmd-pipe-pane.c                       ~ cmd-queue.c
  ~ cmd-refresh-client.c                  ~ cmd-rename-session.c
  ~ cmd-rename-window.c                   ~ cmd-resize-pane.c
  ~ cmd-respawn-pane.c                    ~ cmd-respawn-window.c
  ~ cmd-rotate-window.c                   ~ cmd-run-shell.c
  ~ cmd-save-buffer.c                     ~ cmd-select-layout.c
  ~ cmd-select-pane.c                     ~ cmd-select-window.c
  ~ cmd-send-keys.c                       ~ cmd-set-environment.c
  ~ cmd-set-hook.c                        ~ cmd-set-option.c
  ~ cmd-show-environment.c                ~ cmd-show-messages.c
  ~ cmd-show-options.c                    ~ cmd-source-file.c
  ~ cmd-split-window.c                    ~ cmd-swap-pane.c
  ~ cmd-swap-window.c                     ~ cmd-switch-client.c
  ~ cmd.c                                 ~ tmux.h

  > Instead of every command resolving the target (-t or -s) itself, prepare
  > the state (client, session, winlink, pane) for it it before entering the
  > command. Each command provides some flags that tell the prepare step
  > what it is expecting.
  > This is a requirement for having hooks on commands (for example, if you
  > hook "select-window -t1:2", the hook command should to operate on window
  > 1:2 not whatever it thinks is the current window), and should allow some
  > other target improvements.
  > The old cmd_find_* functions remain for the moment but that layer will
  > be dropped later.
  > Joint work with Thomas Adam. (nicm@)

  ~ cmd-find.c                            ~ cmd.c

  > Move logging into cmd_find_target rather than each function. (nicm@)

  ~ cmd-find.c                            ~ cmd.c
  ~ tmux.h                                

  > Remove the cmd_find_{session,window,pane,index} functions (which are
  > just wrappers around cmd_find_target) and just use cmd_find_target
  > directly. (nicm@)

  ~ cmd-queue.c                           

  > If command returns error, report it. (nicm@)

  ~ cmd-find.c                            ~ cmd.c
  ~ tmux.h                                

  > Change cmd_find_target to use a state struct from the caller. (nicm@)

  ~ cmd-find.c                            ~ cmd-new-window.c
  ~ cmd.c                                 ~ tmux.h

  > Use struct cmd_find_state directly and remove cmd_state_flag, also
  > change so that winlink is set even if an index is too. (nicm@)

  ~ cmd.c                                 

  > Don't log an error when doing the first check for move-window. (nicm@)

  ~ cmd-show-environment.c                ~ cmd-show-options.c

  > show-options and environment need CANFAIL flag. (nicm@)

  ~ cmd.c                                 

  > Remove an unnecessary function. (nicm@)

  ~ cmd-display-message.c                 ~ cmd.c
  ~ tmux.h                                

  > -c needs to be able for fail for display-message. (nicm@)

  ~ cmd.c                                 

  > Actually I thought cmd_get_state_client was unnecessary but it will be
  > needed. (nicm@)

  ~ cmd-attach-session.c                  ~ cmd-bind-key.c
  ~ cmd-break-pane.c                      ~ cmd-capture-pane.c
  ~ cmd-choose-buffer.c                   ~ cmd-choose-client.c
  ~ cmd-choose-tree.c                     ~ cmd-clear-history.c
  ~ cmd-command-prompt.c                  ~ cmd-confirm-before.c
  ~ cmd-copy-mode.c                       ~ cmd-detach-client.c
  ~ cmd-display-message.c                 ~ cmd-display-panes.c
  ~ cmd-find-window.c                     ~ cmd-if-shell.c
  ~ cmd-join-pane.c                       ~ cmd-kill-pane.c
  ~ cmd-kill-server.c                     ~ cmd-kill-session.c
  ~ cmd-kill-window.c                     ~ cmd-list-buffers.c
  ~ cmd-list-clients.c                    ~ cmd-list-keys.c
  ~ cmd-list-panes.c                      ~ cmd-list-sessions.c
  ~ cmd-list-windows.c                    ~ cmd-load-buffer.c
  ~ cmd-lock-server.c                     ~ cmd-move-window.c
  ~ cmd-new-session.c                     ~ cmd-new-window.c
  ~ cmd-paste-buffer.c                    ~ cmd-pipe-pane.c
  ~ cmd-refresh-client.c                  ~ cmd-rename-session.c
  ~ cmd-rename-window.c                   ~ cmd-resize-pane.c
  ~ cmd-respawn-pane.c                    ~ cmd-respawn-window.c
  ~ cmd-rotate-window.c                   ~ cmd-run-shell.c
  ~ cmd-save-buffer.c                     ~ cmd-select-layout.c
  ~ cmd-select-pane.c                     ~ cmd-select-window.c
  ~ cmd-send-keys.c                       ~ cmd-set-buffer.c
  ~ cmd-set-environment.c                 ~ cmd-set-hook.c
  ~ cmd-set-option.c                      ~ cmd-show-environment.c
  ~ cmd-show-messages.c                   ~ cmd-show-options.c
  ~ cmd-source-file.c                     ~ cmd-split-window.c
  ~ cmd-swap-pane.c                       ~ cmd-swap-window.c
  ~ cmd-switch-client.c                   ~ cmd-unbind-key.c
  ~ cmd-wait-for.c                        ~ cmd.c
  ~ tmux.h                                

  > Use member names in cmd_entry definitions so I stop getting confused
  > about the order. (nicm@)

== usr.sbin ========================================================== 03/03 ==

  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.sbin

eigrpctl

  ~ eigrpctl.8                            ~ eigrpctl.c
  ~ parser.c                              ~ parser.h

  > Introduce new command to show traffic statistics.
  > Can be useful as a troubleshooting tool. (renato@)

eigrpd

  ~ control.c                             ~ eigrpd.h
  ~ eigrpe.c                              ~ eigrpe.h
  ~ packet.c                              

  > Introduce new command to show traffic statistics.
  > Can be useful as a troubleshooting tool. (renato@)

  ~ rde_dual.c                            

  > Minor cosmetic changes. (renato@)

  ~ eigrpd.conf.5                         

  > Fix bug in the documentation of the k-values configuration option.
  > (renato@)

  ~ rde.h                                 ~ rde_dual.c

  > Respect the k-values configuration when calculating the composite metric.
  > (renato@)

smtpd

  ~ smtp.c                                ~ smtp_session.c
  ~ smtpd.h                               ~ ssl.c
  ~ ssl.h                                 ~ ssl_smtpd.c

  > refactor a bit to move the SNI handling away from smtp_session into smtp
  > ok sunil@, jung@ (gilles@)

  ~ smtpd.conf.5                          

  > document wildcard pki/ca (gilles@)

  ~ smtp_session.c                        

  > remove prototype to now unused function + pass fallback hint to lka
  > (gilles@)

  ~ pony.c                                ~ smtp_session.c
  ~ smtpd/Makefile                        

  > refactor smtp_session to plug into the filters infrastructure (gilles@)

  ~ smtpd.conf.5                          

  > document filter keyword (gilles@)

  ~ smtpd.h                               

  > smtpd is no longer 5.4.6 (gilles@)

  ~ makemap.c                             

  > Move some variables local to makemap().
  > Suggested by guenther@ Ok gilles@ (sunil@)

  ~ smtpd.conf.5                          

  > less macro; (jmc@)

  ~ smtpd/Makefile                        + filter_api.3

  > add filter api man page
  > ok gilles (jung@)

  ~ filter_api.3                          

  > fix warnings; spotted by `mandoc -Tlint'
  > OK jung@ (gsoares@)

===============================================================================
_______________________________________________
odc mailing list
[email protected]
http://www.squish.net/mailman/listinfo/odc

Reply via email to