Mercurial > masqmail
comparison src/queue.c @ 349:b45dc53f2829
Removed unused second arg of msg_spool_read()
author | markus schnalke <meillo@marmaro.de> |
---|---|
date | Thu, 14 Jul 2011 11:38:23 +0200 |
parents | a7a387253b2f |
children | 41958685480d |
comparison
equal
deleted
inserted
replaced
348:a7a387253b2f | 349:b45dc53f2829 |
---|---|
74 /* uid length = 6 chars + '-' + 3 chars + '-' + 2 = 13 chars */ | 74 /* uid length = 6 chars + '-' + 3 chars + '-' + 2 = 13 chars */ |
75 uid = g_strndup(&(gl.gl_pathv[idx_arr[i]][strlen(conf.spool_dir) + 7]), 13); | 75 uid = g_strndup(&(gl.gl_pathv[idx_arr[i]][strlen(conf.spool_dir) + 7]), 13); |
76 | 76 |
77 DEBUG(5) debugf("uid: %s\n", uid); | 77 DEBUG(5) debugf("uid: %s\n", uid); |
78 | 78 |
79 msg_list = g_list_append(msg_list, msg_spool_read(uid, FALSE)); | 79 msg_list = g_list_append(msg_list, msg_spool_read(uid)); |
80 | 80 |
81 DEBUG(5) debugf("after read spool file for %s\n", uid); | 81 DEBUG(5) debugf("after read spool file for %s\n", uid); |
82 | 82 |
83 g_free(uid); | 83 g_free(uid); |
84 } | 84 } |