summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Rękorajski2006-04-21 23:40:22 (GMT)
committercvs2git2012-06-24 12:13:13 (GMT)
commit331a10a9bd57b9064264bbc10167cf5a06f634eb (patch)
tree393f2d0ec8a3edb956f6bc38644d2d12147f7ae1
parentbcb917ff90017a56de45d405ee9b350ebe91d77c (diff)
downloadPantomime-331a10a9bd57b9064264bbc10167cf5a06f634eb.zip
Pantomime-331a10a9bd57b9064264bbc10167cf5a06f634eb.tar.gz
- orphaned, outdated
Changed files: Pantomime-whitespacepassword.patch -> 1.2
-rw-r--r--Pantomime-whitespacepassword.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/Pantomime-whitespacepassword.patch b/Pantomime-whitespacepassword.patch
deleted file mode 100644
index 4e1902c..0000000
--- a/Pantomime-whitespacepassword.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -ur Pantomime-orig/Source/IMAPStore.m Pantomime/Source/IMAPStore.m
---- Pantomime-orig/Source/IMAPStore.m 2003-07-24 15:30:36.000000000 -0600
-+++ Pantomime/Source/IMAPStore.m 2003-08-20 15:34:02.000000000 -0600
-@@ -257,16 +257,16 @@
- password: (NSString*) thePassword
- {
- NSString *aPassword;
-- NSRange aRange;
--
-+ NSRange aRange, aRange2;
- // We first retain the username for future use
- username = theUsername;
- RETAIN(username);
-
- // We must verify if we must quote the password
- aRange = [thePassword rangeOfCharacterFromSet: [NSCharacterSet punctuationCharacterSet]];
-+ aRange2 = [thePassword rangeOfCharacterFromSet: [NSCharacterSet whitespaceCharacterSet]];
-
-- if ( aRange.length )
-+ if ( aRange.length || aRange2.length )
- {
- aPassword = [NSString stringWithFormat: @"\"%@\"", thePassword];
- }
-Only in Pantomime/Source: IMAPStore.m~