| 154 | } |
| 155 | |
| 156 | void |
| 157 | new_omailcmd(struct obj *otmp, const char *response_cmd) |
| 158 | { |
| 159 | if (!otmp->oextra) |
| 160 | otmp->oextra = newoextra(); |
| 161 | if (OMAILCMD(otmp)) |
| 162 | free_omailcmd(otmp); |
| 163 | OMAILCMD(otmp) = dupstr(response_cmd); |
| 164 | } |
| 165 | |
| 166 | void |
| 167 | free_omailcmd(struct obj *otmp) |
no test coverage detected