Diff for /freem/src/global_dispatch.c between versions 1.9 and 1.10

version 1.9, 2025/04/10 01:24:38 version 1.10, 2025/04/13 04:22:43
Line 24 Line 24
  *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.   *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.
  *   *
  *   $Log$   *   $Log$
    *   Revision 1.10  2025/04/13 04:22:43  snw
    *   Fix snprintf calls
    *
  *   Revision 1.9  2025/04/10 01:24:38  snw   *   Revision 1.9  2025/04/10 01:24:38  snw
  *   Remove C++ style comments   *   Remove C++ style comments
  *   *
Line 345  void global (short action, char *key, ch Line 348  void global (short action, char *key, ch
   
         /* grab the rest of the gvn */          /* grab the rest of the gvn */
         subprt = nssave + i + 1;          subprt = nssave + i + 1;
         snprintf (r->name, 255, "^%s", subprt);          sprintf (r->name, "^%s", subprt);
   
         /* get a fully-formed key */          /* get a fully-formed key */
         key = mref_to_internal (r);          key = mref_to_internal (r);

Removed from v.1.9  
changed lines
  Added in v.1.10


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>