comparison src/director/login-connection.c @ 14471:fc8031c5e691

Use t_strsplit_tab() wherever possible
author Timo Sirainen <tss@iki.fi>
date Thu, 19 Apr 2012 23:06:55 +0300
parents ba770cba5598
children ca37d1577291
comparison
equal deleted inserted replaced
14470:7eb9688c266f 14471:fc8031c5e691
119 login_connection_send_line(conn, line); 119 login_connection_send_line(conn, line);
120 return; 120 return;
121 } 121 }
122 122
123 /* OK <id> [<parameters>] */ 123 /* OK <id> [<parameters>] */
124 args = t_strsplit(line_params, "\t"); 124 args = t_strsplit_tab(line_params);
125 if (*args != NULL) { 125 if (*args != NULL) {
126 /* we should always get here, but in case we don't just 126 /* we should always get here, but in case we don't just
127 forward as-is and let login process handle the error. */ 127 forward as-is and let login process handle the error. */
128 args++; 128 args++;
129 } 129 }