Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
fragglet committed Sep 11, 2021
1 parent 0a652ff commit 89837bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipxbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ func main() {
if *enablePPTP {
pptps, err := pptp.NewServer(net)
if err != nil {
log.Fatal("failed to start PPTP server: %v", err)
log.Fatalf("failed to start PPTP server: %v", err)
}
go pptps.Run(ctx)
}
Expand Down

0 comments on commit 89837bb

Please sign in to comment.