fix typo
paramanent_flag => permanent_flag
This commit is contained in:
parent
1e52fa8325
commit
d4ad115d93
2 changed files with 2 additions and 2 deletions
|
|
@ -46,7 +46,7 @@ fn main() {
|
|||
|
||||
match imap_socket.select("INBOX") {
|
||||
Ok(IMAPMailbox{flags, exists, recent, unseen, permanent_flags, uid_next, uid_validity}) => {
|
||||
println!("flags: {}, exists: {}, recent: {}, unseen: {:?}, parmanent_flags: {:?}, uid_next: {:?}, uid_validity: {:?}", flags, exists, recent, unseen, permanent_flags, uid_next, uid_validity);
|
||||
println!("flags: {}, exists: {}, recent: {}, unseen: {:?}, permanent_flags: {:?}, uid_next: {:?}, uid_validity: {:?}", flags, exists, recent, unseen, permanent_flags, uid_next, uid_validity);
|
||||
},
|
||||
Err(_) => println!("Error selecting INBOX")
|
||||
};
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ fn main() {
|
|||
|
||||
match imap_socket.select("INBOX") {
|
||||
Ok(IMAPMailbox{flags, exists, recent, unseen, permanent_flags, uid_next, uid_validity}) => {
|
||||
println!("flags: {}, exists: {}, recent: {}, unseen: {:?}, parmanent_flags: {:?}, uid_next: {:?}, uid_validity: {:?}", flags, exists, recent, unseen, permanent_flags, uid_next, uid_validity);
|
||||
println!("flags: {}, exists: {}, recent: {}, unseen: {:?}, permanent_flags: {:?}, uid_next: {:?}, uid_validity: {:?}", flags, exists, recent, unseen, permanent_flags, uid_next, uid_validity);
|
||||
},
|
||||
Err(_) => println!("Error selecting INBOX")
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue