Given that dpif.c clears action numbers to 0xcccc it can be much less
mystifying to see that instead of 52428.
/*
- * Copyright (c) 2009 Nicira Networks.
+ * Copyright (c) 2009, 2010 Nicira Networks.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
ds_put_format(ds, "set_tp_dst(%"PRIu16")", ntohs(a->tp_port.tp_port));
break;
default:
- ds_put_format(ds, "***bad action %"PRIu16"***", a->type);
+ ds_put_format(ds, "***bad action 0x%"PRIx16"***", a->type);
break;
}
}