Changeset 989 for vendor/current/source3/rpc_server
- Timestamp:
- Nov 25, 2016, 8:04:54 PM (9 years ago)
- Location:
- vendor/current/source3/rpc_server
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/rpc_server/mdssd.c
r988 r989 668 668 } 669 669 670 status = reinit_after_fork(msg_ctx, ev_ctx, true, "mdssd-master");670 status = smbd_reinit_after_fork(msg_ctx, ev_ctx, true, "mdssd-master"); 671 671 if (!NT_STATUS_IS_OK(status)) { 672 672 DEBUG(0,("reinit_after_fork() failed\n")); -
vendor/current/source3/rpc_server/mdssvc/mdssvc.c
r988 r989 1784 1784 1785 1785 /** 1786 * Init callbacks at startup , nothing to do here really1786 * Init callbacks at startup 1787 1787 **/ 1788 1788 bool mds_init(struct messaging_context *msg_ctx) 1789 1789 { 1790 #if (GLIB_MAJOR_VERSION < 3) && (GLIB_MINOR_VERSION < 36) 1791 g_type_init(); 1792 #endif 1790 1793 return true; 1791 1794 } -
vendor/current/source3/rpc_server/mdssvc/sparql_parser.c
r988 r989 242 242 243 243 #ifndef YY_ATTRIBUTE 244 # if (defined __GNUC__ \ 245 && (2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__))) \ 246 || defined __SUNPRO_C && 0x5110 <= __SUNPRO_C 244 # if HAVE___ATTRIBUTE__ 247 245 # define YY_ATTRIBUTE(Spec) __attribute__(Spec) 248 246 # else -
vendor/current/source3/rpc_server/rpc_ncacn_np.c
r988 r989 710 710 } 711 711 712 ev_ctx = s 3_tevent_context_init(tmp_ctx);712 ev_ctx = samba_tevent_context_init(tmp_ctx); 713 713 if (ev_ctx == NULL) { 714 DEBUG(0, ("s 3_tevent_context_init failed\n"));714 DEBUG(0, ("samba_tevent_context_init failed\n")); 715 715 status = NT_STATUS_NO_MEMORY; 716 716 goto out; … … 818 818 } 819 819 820 ev = s 3_tevent_context_init(talloc_tos());820 ev = samba_tevent_context_init(talloc_tos()); 821 821 if (ev == NULL) { 822 DEBUG(0, ("s 3_tevent_context_init failed\n"));822 DEBUG(0, ("samba_tevent_context_init failed\n")); 823 823 goto fail; 824 824 } -
vendor/current/source3/rpc_server/spoolss/srv_spoolss_nt.c
r988 r989 705 705 if (!found) { 706 706 gencache_set(cache_key, printer_not_found, 707 time _mono(NULL) + 300);707 time(NULL) + 300); 708 708 TALLOC_FREE(cache_key); 709 709 DEBUGADD(4,("Printer not found\n")); … … 711 711 } 712 712 713 gencache_set(cache_key, sname, time _mono(NULL) + 300);713 gencache_set(cache_key, sname, time(NULL) + 300); 714 714 TALLOC_FREE(cache_key); 715 715
Note:
See TracChangeset
for help on using the changeset viewer.