version 1.80 | | version 1.81 |
---|
| | |
/* | | /* |
* static char *rcsid_init_c = | | * static char *rcsid_init_c = |
* "$Id: request.c,v 1.80 2006/01/13 20:42:02 cavesomething Exp $"; | | * "$Id: request.c,v 1.81 2006/01/13 21:26:27 akirschbaum Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
* think it was the carriage return that was entered, and the | | * think it was the carriage return that was entered, and the |
* function then does not try to do additional input. | | * function then does not try to do additional input. |
*/ | | */ |
sprintf(pl->write_buf,":%s", (char*)buf); | | snprintf(pl->write_buf, sizeof(pl->write_buf), ":%s", buf); |
| | |
/* this avoids any hacking here */ | | /* this avoids any hacking here */ |
| | |