Diff for /freem/src/ssvn_global.c between versions 1.6 and 1.7

version 1.6, 2025/04/09 19:52:02 version 1.7, 2025/04/10 17:21:54
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.7  2025/04/10 17:21:54  snw
    *   Remove traces of BDB global handler
    *
  *   Revision 1.6  2025/04/09 19:52:02  snw   *   Revision 1.6  2025/04/09 19:52:02  snw
  *   Eliminate as many warnings as possible while building with -Wall   *   Eliminate as many warnings as possible while building with -Wall
  *   *
Line 156  void ssvn_global(short action, char *key Line 159  void ssvn_global(short action, char *key
             }              }
   
             snprintf (ns_key, 255, "^$SYSTEM\202MAPPINGS\202GLOBAL\202^%s\201", mref_get_subscript (r, 0));              snprintf (ns_key, 255, "^$SYSTEM\202MAPPINGS\202GLOBAL\202^%s\201", mref_get_subscript (r, 0));
             global (set_sym, ns_key, data);              symtab_shm (set_sym, ns_key, data);
   
             goto done;              goto done;
   
Line 168  void ssvn_global(short action, char *key Line 171  void ssvn_global(short action, char *key
             }              }
   
             snprintf (ns_key, STRLEN, "^$SYSTEM\202MAPPINGS\202GLOBAL\202^%s\201", mref_get_subscript (r, 0));              snprintf (ns_key, STRLEN, "^$SYSTEM\202MAPPINGS\202GLOBAL\202^%s\201", mref_get_subscript (r, 0));
             global (kill_sym, ns_key, data);              symtab_shm (kill_sym, ns_key, data);
   
             goto done;              goto done;
   
Line 395  short frm_global_exists(char *gbl_namesp Line 398  short frm_global_exists(char *gbl_namesp
         snprintf (mapk_buf, STRLEN, "^$SYSTEM\202MAPPINGS\202GLOBAL\202%s\201", global_name);          snprintf (mapk_buf, STRLEN, "^$SYSTEM\202MAPPINGS\202GLOBAL\202%s\201", global_name);
     }      }
           
     global (get_sym, mapk_buf, mapd_buf);      symtab_shm (get_sym, mapk_buf, mapd_buf);
   
     stcnv_m2c (mapd_buf);      stcnv_m2c (mapd_buf);
   

Removed from v.1.6  
changed lines
  Added in v.1.7


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