/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to dracut-module/password-agent.c

  • Committer: teddy at recompile
  • Date: 2020-11-29 22:26:30 UTC
  • Revision ID: teddy@recompile.se-20201129222630-majen1v3cgwzre1f
Fix spelling in comments

* dracut-module/password-agent.c (test_connect_question_socket_usable,
  test_send_password_to_socket_EMSGSIZE):  Fix spelling from
  "procotol" to "protocol" in comment.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5807
5807
  char write_data[PIPE_BUF];
5808
5808
  {
5809
5809
    /* Construct test password buffer */
5810
 
    /* Start with + since that is what the real procotol uses */
 
5810
    /* Start with + since that is what the real protocol uses */
5811
5811
    write_data[0] = '+';
5812
5812
    /* Set a special character at string end just to mark the end */
5813
5813
    write_data[sizeof(write_data)-2] = 'y';
5980
5980
    g_assert_true(errno == EPERM or errno == ENOMEM);
5981
5981
  }
5982
5982
  /* Construct test password buffer */
5983
 
  /* Start with + since that is what the real procotol uses */
 
5983
  /* Start with + since that is what the real protocol uses */
5984
5984
  password.data[0] = '+';
5985
5985
  /* Set a special character at string end just to mark the end */
5986
5986
  password.data[oversized-3] = 'y';