Commit Diff
- Commit:
4f6bf13c6b1b46b405a7f093a1bc52bf247afb9d
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
- Message:
- always consume authorized keys messages in gotsys-userkeys THe main process will always send these messages so don't skip parsing them even if we are going to ignore the current user.
- Actions:
- Patch | Tree
--- gotsysd/libexec/gotsys-userkeys/gotsys-userkeys.c +++ gotsysd/libexec/gotsys-userkeys/gotsys-userkeys.c @@ -173,8 +173,6 @@ dispatch_event(int fd, short event, void *arg) switch (imsg.hdr.type) { case GOTSYSD_IMSG_SYSCONF_INSTALL_AUTHORIZED_KEYS: - if (ignore_user) - break; err = gotsys_imsg_recv_authorized_keys(&imsg, &authorized_keys); break;