]> diplodocus.org Git - nmh/blob - sbr/m_gmprot.c
Just reworded the bit about '%s' being safe not to quote (it's only safe not to
[nmh] / sbr / m_gmprot.c
1
2 /*
3 * m_gmprot.c -- return the msg-protect value
4 *
5 * $Id$
6 */
7
8 #include <h/mh.h>
9
10
11 int
12 m_gmprot (void)
13 {
14 register char *cp;
15
16 return atooi ((cp = context_find ("msg-protect")) && *cp ? cp : msgprot);
17 }