upnperrors.c returns valid error string for unrecognized error codes

This commit is contained in:
Tom Stokes 2012-03-12 16:50:27 -07:00
parent 88fc495942
commit 7b1696aff3
1 changed files with 2 additions and 1 deletions

View File

@ -97,7 +97,8 @@ const char * strupnperror(int err)
s = "ExternalPortOnlySupportsWildcard"; s = "ExternalPortOnlySupportsWildcard";
break; break;
default: default:
s = NULL; s = "UnknownError";
break;
} }
return s; return s;
} }