mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	fix: change FormatUint base from 64 to 10 in preauthkeys list command (#2588)
This commit is contained in:
		
							parent
							
								
									8c7e650616
								
							
						
					
					
						commit
						62b489dc68
					
				@ -112,7 +112,7 @@ var listPreAuthKeys = &cobra.Command{
 | 
			
		||||
			aclTags = strings.TrimLeft(aclTags, ",")
 | 
			
		||||
 | 
			
		||||
			tableData = append(tableData, []string{
 | 
			
		||||
				strconv.FormatUint(key.GetId(), 64),
 | 
			
		||||
				strconv.FormatUint(key.GetId(), 10),
 | 
			
		||||
				key.GetKey(),
 | 
			
		||||
				strconv.FormatBool(key.GetReusable()),
 | 
			
		||||
				strconv.FormatBool(key.GetEphemeral()),
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user