Skip to content

Commit

Permalink
Copy paste error, dammit
Browse files Browse the repository at this point in the history
  • Loading branch information
mronge committed Feb 4, 2014
1 parent 33069f8 commit 6a4cd6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/CTCoreFolder.m
Expand Up @@ -858,7 +858,7 @@ - (BOOL)copyMessageWithUID:(NSUInteger)uid toPath:(NSString *)path {
}

char mbPath[MAX_PATH_SIZE];
if (![self getUTF7String:mbPath fromString:myPath]) {
if (![self getUTF7String:mbPath fromString:path]) {
self.lastError = MailCoreCreateStringConvError();
return NO;
}
Expand All @@ -877,7 +877,7 @@ - (BOOL)moveMessageWithUID:(NSUInteger)uid toPath:(NSString *)path {
}

char mbPath[MAX_PATH_SIZE];
if (![self getUTF7String:mbPath fromString:myPath]) {
if (![self getUTF7String:mbPath fromString:path]) {
self.lastError = MailCoreCreateStringConvError();
return NO;
}
Expand Down

0 comments on commit 6a4cd6a

Please sign in to comment.