mirror of
				https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
				synced 2025-11-03 21:43:32 +00:00 
			
		
		
		
	src: fix use of logging_vty_add_cmds() without log_info parameter
This patch fixes: CC gb_proxy_main.o gb_proxy_main.c: In function ‘main’: gb_proxy_main.c:224: warning: implicit declaration of function ‘logging_vty_add_cmds’ And a similar problem in osmo-bsc_nat. This was introduced in by myself in patch: "bsc: change bsc_vty_init to take logging categories as parameter" Signed-off-by: Pablo Neira Ayuso <pablo@gnumonks.org>
This commit is contained in:
		
				
					committed by
					
						
						Harald Welte
					
				
			
			
				
	
			
			
			
						parent
						
							50e529d44e
						
					
				
				
					commit
					3848770669
				
			@@ -47,6 +47,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#include <osmocom/vty/command.h>
 | 
					#include <osmocom/vty/command.h>
 | 
				
			||||||
#include <osmocom/vty/telnet_interface.h>
 | 
					#include <osmocom/vty/telnet_interface.h>
 | 
				
			||||||
 | 
					#include <osmocom/vty/logging.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "../../bscconfig.h"
 | 
					#include "../../bscconfig.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -221,7 +222,7 @@ int main(int argc, char **argv)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	vty_info.copyright = openbsc_copyright;
 | 
						vty_info.copyright = openbsc_copyright;
 | 
				
			||||||
	vty_init(&vty_info);
 | 
						vty_init(&vty_info);
 | 
				
			||||||
	logging_vty_add_cmds();
 | 
						logging_vty_add_cmds(&log_info);
 | 
				
			||||||
	gbproxy_vty_init();
 | 
						gbproxy_vty_init();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	handle_options(argc, argv);
 | 
						handle_options(argc, argv);
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -40,6 +40,7 @@
 | 
				
			|||||||
#include <osmocore/process.h>
 | 
					#include <osmocore/process.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <osmocom/vty/telnet_interface.h>
 | 
					#include <osmocom/vty/telnet_interface.h>
 | 
				
			||||||
 | 
					#include <osmocom/vty/logging.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include <openbsc/signal.h>
 | 
					#include <openbsc/signal.h>
 | 
				
			||||||
#include <openbsc/debug.h>
 | 
					#include <openbsc/debug.h>
 | 
				
			||||||
@@ -220,7 +221,7 @@ int main(int argc, char **argv)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	vty_info.copyright = openbsc_copyright;
 | 
						vty_info.copyright = openbsc_copyright;
 | 
				
			||||||
	vty_init(&vty_info);
 | 
						vty_init(&vty_info);
 | 
				
			||||||
	logging_vty_add_cmds();
 | 
						logging_vty_add_cmds(&log_info);
 | 
				
			||||||
        sgsn_vty_init();
 | 
					        sgsn_vty_init();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	handle_options(argc, argv);
 | 
						handle_options(argc, argv);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user