Commit Diff
- Commit:
5f1975fcf4dc127d226eacd7bb6ca411c4b3bfcf
- From:
- Stefan Sperling <stsp@stsp.name>
- 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;