Changeset 4973:83ca0fb6e36a for imap
- Timestamp:
- 2007-03-12 10:32:35 (21 months ago)
- Branch:
- default
- Files:
-
- 1 modified
-
imap/util.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
imap/util.c
r4787 r4973 296 296 int x = 0; 297 297 298 if (!mailbox || !*mailbox)299 {300 strfcpy (path, "INBOX", plen);301 return path;302 }303 304 298 while (mailbox && *mailbox && (x < (plen - 1))) 305 299 { … … 319 313 x++; 320 314 path[x] = '\0'; 315 316 if (!path[0]) 317 strfcpy (path, "INBOX", plen); 318 321 319 return path; 322 320 }
